2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-19 03:25:44 +00:00
cheat.sheets/sheets/percol
terminalforlife d7473ac185 Fix trailing whitespace on all files
Tidy files; tidy soul!
2020-02-22 02:47:54 +00:00

14 lines
287 B
Plaintext

# percol
#
# adds flavor of interactive filtering to the traditional pipe concept of UNIX shell
# to install percol
sudo pip install percol
# interactive pgrep version
ps aux | percol | awk '{ print $2 }'
# interactive pkill version
ps aux | percol | awk '{ print $2 }' | xargs kill