diff options
| author | Kyle Javier | 2021-10-02 03:01:32 -0400 |
|---|---|---|
| committer | Kyle Javier | 2021-10-02 03:01:32 -0400 |
| commit | 7dc8eae01534f146dad9c67ce821eec768c11690 (patch) | |
| tree | 9eded3ff55f8a9c94cacca1ce058bb251aa07b35 /awesome/autorun.sh | |
| parent | 24faf59f1756939aa56723ba0e2cb604648ff45c (diff) | |
syntax correction for POSIX-compliance
Diffstat (limited to 'awesome/autorun.sh')
| -rwxr-xr-x | awesome/autorun.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/awesome/autorun.sh b/awesome/autorun.sh index b44ff96..ca7de50 100755 --- a/awesome/autorun.sh +++ b/awesome/autorun.sh @@ -1,9 +1,9 @@ #!/bin/sh run () { - if ! pgrep -f $1 ; + if ! pgrep -f "$1" ; then - $@& + "$@"& fi } |
