mirror of
https://github.com/cheat/cheat.git
synced 2025-07-19 20:21:46 +02:00
Cleaned up the loop
Otherwise, the loop just prints the words 'file' and 'found' on separate lines.
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
# To implement a for loop:
|
||||
for file in `ls .`;
|
||||
do echo 'file';
|
||||
echo 'found';
|
||||
do
|
||||
echo $file found;
|
||||
done
|
||||
|
||||
# To implement a case command:
|
||||
|
Reference in New Issue
Block a user