mirror of
https://github.com/koalaman/shellcheck
synced 2025-08-14 02:27:30 -07:00
For * in ls
case now uses $(..)
This commit is contained in:
parent
c6a05179e0
commit
279e972b61
1 changed files with 1 additions and 1 deletions
|
@ -1 +1 @@
|
|||
for f in `ls *.jpg`; do echo "$f"; done
|
||||
for f in $(ls *.jpg); do echo "$f"; done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue