mirror of https://github.com/cheat/cheat.git
Never parse ls.
http://mywiki.wooledge.org/ParsingLs It's about the only thing I really know about bash.
This commit is contained in:
parent
8dd00d8c9b
commit
ce611eaceb
|
@ -1,5 +1,5 @@
|
||||||
# To implement a for loop:
|
# To implement a for loop:
|
||||||
for file in `ls .`;
|
for file in *;
|
||||||
do
|
do
|
||||||
echo $file found;
|
echo $file found;
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue