mirror of
https://github.com/cheat/cheat.git
synced 2024-11-13 07:31:07 +01:00
6 lines
88 B
Text
6 lines
88 B
Text
|
To implement a for loop:
|
||
|
for file in `ls .`;
|
||
|
do echo 'file';
|
||
|
echo 'found';
|
||
|
done
|