diff options
Diffstat (limited to 'fish/functions')
-rw-r--r-- | fish/functions/grep.fish | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fish/functions/grep.fish b/fish/functions/grep.fish new file mode 100644 index 0000000..bf66e8e --- /dev/null +++ b/fish/functions/grep.fish @@ -0,0 +1,5 @@ +# grep without colour + +function grep + command grep --color=never $argv +end |