mirror of
https://github.com/koalaman/shellcheck.git
synced 2025-08-08 08:13:56 +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