Created
November 18, 2022 05:58
-
-
Save wannadrunk/d217724bd928a1c83906ba6b4b56ad57 to your computer and use it in GitHub Desktop.
bash script to display the ASCII Art text file. Source of ASCII Art from https://www.asciiart.eu/
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
#!/bin/bash | |
clear | |
while : | |
do | |
cat cowfile | cowsay | |
inxi -F | |
sleep 3 | |
for TXTFILE in *.txt; do | |
cat $TXTFILE | |
sleep 3 | |
done | |
df -H | |
sleep 3 | |
ping 8.8.8.8 -c5 | |
sleep 3 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment