mirror of
https://github.com/Erreur32/cheat.git
synced 2025-01-13 08:12:01 +01:00
5 lines
88 B
Text
5 lines
88 B
Text
To implement a for loop:
|
|
for file in `ls .`;
|
|
do echo 'file';
|
|
echo 'found';
|
|
done
|