Last active
February 2, 2022 19:58
-
-
Save sjkillen/e5b0c504967e24806393cc44e93d8504 to your computer and use it in GitHub Desktop.
Infinitely looping program that demonstrates that bash programs are modifiable during execution
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
S='sleep 1; echo hello world; echo "$S" >> quine.bash; sleep 1' | |
sleep 1 | |
echo hello world | |
echo "$S" >> quine.bash | |
sleep 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment