mirror of
https://github.com/koalaman/shellcheck.git
synced 2025-08-07 20:52:45 +08:00
For * in ls
case now uses $(..)
This commit is contained in:
@@ -1 +1 @@
|
||||
for f in `ls *.jpg`; do echo "$f"; done
|
||||
for f in $(ls *.jpg); do echo "$f"; done
|
||||
|
Reference in New Issue
Block a user