Commandes bash fun

qrencode

Génère un QR code en terminal.

echo "https://example.com" | qrencode -t ANSI

Ecran de hacker

sudo apt install hollywood

Inverse un text

echo "un texte" | rev

Dé de 1 à 6

echo $((1 + RANDOM % 6))  # Dé entre 1 et 6

Compte à rebours

for i in {5..1}; do echo "$i..." && sleep 1; done; echo "Boom!"

Fake "hacking"

cat /dev/urandom | hexdump -C | grep 'ca fe'

Star Wars ASCII

telnet towel.blinkenlights.nl

Magic 8-Ball

answers=("Oui" "Non" "Peut-être" "Demande plus tard")
echo "${answers[$((RANDOM % 4))]}"

Factorise un nombre

factor 42  # Affiche "42: 2 3 7"

Un train qui traverse ton terminal (quand tu fais une faute de frappe sl au lieu de ls)

sl

ou avec une aide

sl -a

cowsay

cowsay "Hello, World!"

ou

cowsay -f dragon "I am a dragon! RAWR!"

Emoji

🌞 🌳 🐉

openwer gist.github.com/nicolasdao