-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1129
Joachim Ansorg edited this page Nov 12, 2021
·
2 revisions
while! [ -f file ]
do sleep 1; done
while ! [ -f file ]
do sleep 1; done
ShellCheck found a keyword immediately followed by a !
. There needs to be a space between them.
None