ENTRY

[ESC]
4mo103 words

So now that I have the 5 ascii arts as planned. (1, 2, 3, 4 and 5) I wanted to share the alias I made to output one of them randomly any time I use the make command, in case anyone want to do something similar.

alias make="find /home/yourname/somefolder/thefolderwhereyoudidputtheasciitextfiles -type f | shuf -n 1 | xargs cat; sleep 0.5; make"

I added sleep 0.5; so I have the time to briefly see the ascii art before it's moved out of view by the output of the make command. Depending on your case you might want to remove it or adjust the value.

0 replies

Join the conversation