cheat/.cheat/bash

6 lines
88 B
Plaintext
Raw Normal View History

To implement a for loop:
for file in `ls .`;
do echo 'file';
echo 'found';
done