m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 16:45:38 -05:00

fix fkill (kill:5: illegal pid:)

benutzer193
2017-02-09 12:34:43 +01:00
parent 1d7cfe7882
commit d99ef6b638

@@ -304,7 +304,7 @@ fkill() {
if [ "x$pid" != "x" ]
then
kill -${1:-9} $pid
echo $pid | xargs kill -${1:-9}
fi
}
```