forked from pub-solar/os
7 lines
129 B
Plaintext
7 lines
129 B
Plaintext
|
# pipe rg into less with colors
|
||
|
if [[ -t 1 && -n $PAGER ]]; then
|
||
|
@ripgrep@/bin/rg -p $@ | $PAGER
|
||
|
else
|
||
|
@ripgrep@/bin/rg $@
|
||
|
fi
|