mirror of
https://github.com/koalaman/shellcheck.git
synced 2025-11-07 13:26:22 +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