Last active
July 31, 2020 00:14
-
-
Save gargolito/2e8975f4cb3269e233764334516f9f69 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stay() { | |
echo "" | |
bash --noprofile --norc | |
bye=1 | |
} | |
bye=0 | |
trap stay INT | |
for i in {9..1}; do | |
test $bye -eq 1 && break | |
echo -en "$i " | |
sleep 1 | |
done | |
echo "ttfn" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment