fish-config/functions/ps-grep.fish
2024-09-18 21:32:11 -03:00

4 lines
237 B
Fish

function ps-grep --wraps='function PS_GREP; ps aux | grep "$argv" | grep -v grep; end; PS_GREP' --wraps='ps aux | grep -v grep | grep' --description 'alias ps-grep ps aux | grep -v grep | grep'
ps aux | grep -v grep | grep $argv;
end