diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2022-08-24 17:50:34 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2022-08-24 17:50:34 +0530 |
commit | e532c0c89b6fc69ab99d2c9a739d13d5a9570b3f (patch) | |
tree | 0562b486cb46f032e2313c01da08cf4d461b852c /.scripts/pidkillall | |
parent | 30357221e6de38d63ea359692a8d3cfba3d14bd7 (diff) |
fix in if statement using bashism- var requires double quotes
Diffstat (limited to '.scripts/pidkillall')
-rwxr-xr-x | .scripts/pidkillall | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.scripts/pidkillall b/.scripts/pidkillall index afbf007..1ebc38f 100755 --- a/.scripts/pidkillall +++ b/.scripts/pidkillall @@ -4,6 +4,6 @@ psout=$(ps -u $USER -o pid,%cpu,%mem,comm | sed -n '1!p' | sort -b -k2 -r| cut - //uniq without piping into sort before with the help of awk killall $psout 2>/dev/null && -[ -n $psout ] && dunstify "Terminated all processes Successfully" "$psout was killed" -i skull +[ -n "$psout" ] && dunstify "Terminated all processes Successfully" "$psout was killed" -i skull |