-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1129
Vidar Holen edited this page Feb 18, 2018
·
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