42-archive/42sh/sample/for.sh
2017-03-27 18:07:24 +02:00

13 lines
166 B
Bash

for i in src/*/*.c
do
echo $i | cat -e > file
cat -e file >> another_file
cat -e another_file
done
sleep 2
echo
echo "My sample :"
sleep 2
echo
cat sample/for.sh