1
0
mirror of https://github.com/cheat/cheat.git synced 2025-05-25 01:17:06 +02:00

Merge pull request 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,5 +1,5 @@
# To implement a for loop:
for file in `ls .`;
for file in *;
do
echo $file found;
done