Skip to content

Instantly share code, notes, and snippets.

@wannadrunk
Created November 18, 2022 05:58
Show Gist options
  • Save wannadrunk/d217724bd928a1c83906ba6b4b56ad57 to your computer and use it in GitHub Desktop.
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/
#!/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