Last active
May 16, 2017 14:21
-
-
Save henrahmagix/e72e63a05bc3469a70872f6dd5f350cc to your computer and use it in GitHub Desktop.
The sound of 8 "show your moves" all together
This file contains hidden or 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
W () { sleep $((1 + RANDOM % 10)); } | |
s () { W && echo -n s; } | |
h () { W && echo -n h; } | |
o () { W && echo -n o; } | |
w () { W && echo -n w; } | |
y () { W && echo -n y; } | |
u () { W && echo -n u; } | |
r () { W && echo -n r; } | |
m () { W && echo -n m; } | |
v () { W && echo -n v; } | |
e () { W && echo -n e; } | |
P () { W && echo -n " "; } | |
s & h & o & w & P & y & o & u & r & P & m & o & v & e & s & | |
s & h & o & w & P & y & o & u & r & P & m & o & v & e & s & | |
s & h & o & w & P & y & o & u & r & P & m & o & v & e & s & | |
s & h & o & w & P & y & o & u & r & P & m & o & v & e & s & | |
s & h & o & w & P & y & o & u & r & P & m & o & v & e & s & | |
s & h & o & w & P & y & o & u & r & P & m & o & v & e & s & | |
s & h & o & w & P & y & o & u & r & P & m & o & v & e & s & | |
s & h & o & w & P & y & o & u & r & P & m & o & v & e & s & | |
wait |
This file contains hidden or 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
wvoyvmorsmuhu ho eryoyv o mhr oo sh os yeysssehrs hvmsw owyowu rvvhusueuosyreww ysrvsorooosmohmeooeos oowomeowssuo um v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not perfect: each "show your moves" needs to be printed in sequence, but all 8 "sayings" need to be mangled together. At the moment, everything is printed at random.