For * in `ls` case now uses $(..)

This commit is contained in:
Vidar Holen 2012-11-04 20:31:38 -08:00
parent c6a05179e0
commit 279e972b61
1 changed files with 1 additions and 1 deletions

View File

@ -1 +1 @@
for f in `ls *.jpg`; do echo "$f"; done
for f in $(ls *.jpg); do echo "$f"; done