mirror of
https://github.com/sheumann/hush.git
synced 2024-10-29 20:27:40 +00:00
10 lines
124 B
Plaintext
Executable File
10 lines
124 B
Plaintext
Executable File
i=0
|
|
while test $i != 2; do
|
|
f() { echo First $i; }
|
|
f
|
|
f() { echo Second $i; }
|
|
f
|
|
: $((i++))
|
|
done
|
|
echo Done
|