Merge pull request #182 from barhamd/patch-1

Never parse ls.
This commit is contained in:
Chris Lane 2014-08-11 21:30:44 -04:00
commit 111c2098c0
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
# To implement a for loop:
for file in `ls .`;
for file in *;
do
echo $file found;
done