aboutsummaryrefslogtreecommitdiff
path: root/content/notes/grep-to-less-maintain-colors.md
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2023-05-29 21:44:07 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2023-05-29 21:44:07 +0200
commitd0be7e52146e3dc9769541eaaff4cd987a6088a3 (patch)
treeb3fbfb7d1652c81a13ddfcb41fefbcf36e8994df /content/notes/grep-to-less-maintain-colors.md
parent10f3cfb0d11e1f0330d000ce652c1c91d6ba54fd (diff)
downloadmitjafelicijan.com-d0be7e52146e3dc9769541eaaff4cd987a6088a3.tar.gz
Notes: Added less grep colors note
Diffstat (limited to 'content/notes/grep-to-less-maintain-colors.md')
-rw-r--r--content/notes/grep-to-less-maintain-colors.md26
1 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)