aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/notes/grep-to-less-maintain-colors.md26
-rw-r--r--static/notes/grep-less.pngbin0 -> 178000 bytes
2 files changed, 26 insertions, 0 deletions
diff --git a/content/notes/grep-to-less-maintain-colors.md b/content/notes/grep-to-less-maintain-colors.md
new file mode 100644
index 0000000..9b797ee
--- /dev/null
+++ b/content/notes/grep-to-less-maintain-colors.md
@@ -0,0 +1,26 @@
1---
2title: "Grep to Less that maintain colors"
3url: grep-to-less-maintain-colors.html
4date: 2023-05-29T21:27:07+02:00
5type: notes
6draft: false
7tags: [bash]
8---
9
10I often use `grep` to search for todo's in my code and other people's
11code and then pipe them in `less` and I missed having colors that grep
12outputs in `less`.
13
14- Grep's `--color=always` use markers to highlight the matching strings.
15- Less's `-R` option outputs "raw" control characters.
16
17You could use `alias grep='grep --color=always'` and `alias less='less
18-R'` or create todo function in your `.bashrc` that accepts first argument
19as search string.
20
21```sh
22# This is where the magic happens.
23grep --color=always -rni "TODO:" | less -R
24```
25
26![Less and grep](/notes/grep-less.png)
diff --git a/static/notes/grep-less.png b/static/notes/grep-less.png
new file mode 100644
index 0000000..f69a935
--- /dev/null
+++ b/static/notes/grep-less.png
Binary files differ