dotfiles/.config/fish/functions/grep.fish

10 lines
226 B
Fish
Raw Normal View History

2025-03-02 14:26:08 +01:00
function grep
if test "$pipestatus" = "0"
# No pipe before the grep
command grep -n --color=auto $argv
else
# There is a pipe before the grep
command grep --color=auto $argv
end
end