Update example

This commit is contained in:
Junegunn Choi 2013-11-10 04:00:27 +09:00
parent 8a0a3f9bf5
commit 833c6e1eeb
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ fh() {
# fkill - kill process
fkill() {
ps -ef | sed 1d | fzf | awk '{print $2}' | xargs kill -${1:-9}
ps -ef | sed 1d | fzf -m | awk '{print $2}' | xargs kill -${1:-9}
}
# (Assuming you don't use the default CTRL-T and CTRL-R)