mirror of
https://github.com/cheat/cheat.git
synced 2025-04-08 18:54:04 +02:00
6 lines
88 B
Plaintext
6 lines
88 B
Plaintext
To implement a for loop:
|
|
for file in `ls .`;
|
|
do echo 'file';
|
|
echo 'found';
|
|
done
|