Aller au contenu

« Commandes bash fun » : différence entre les versions

De Marmits Wiki
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 2 : Ligne 2 :
<syntaxhighlight lang="bash" copy>
<syntaxhighlight lang="bash" copy>
curl wttr.in/reims
curl wttr.in/reims
</syntaxhighlight>
=== qrencode ===
Génère un QR code en terminal.
<syntaxhighlight lang="bash" copy>
echo "https://example.com" | qrencode -t ANSI
</syntaxhighlight>
</syntaxhighlight>



Version du 28 mai 2025 à 23:34

Météo

curl wttr.in/reims

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!"