bash: shellcheck
This commit is contained in:
parent
25c87ee8cf
commit
486be8ff24
1 changed files with 1 additions and 3 deletions
|
@ -38,7 +38,7 @@ function psk {
|
|||
if [ -z "$1" ]; then
|
||||
echo "Prozessname fehlt..."
|
||||
else
|
||||
ps -ef | grep $1 | grep -v grep | awk '{ print $2 }' | xargs kill -9
|
||||
ps -ef | grep "$1" | grep -v grep | awk '{ print $2 }' | xargs kill -9
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
@ -86,5 +86,3 @@ function ssh {
|
|||
fi
|
||||
command ssh "$@"
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue