Aller au contenu

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

De Marmits Wiki
Ligne 64 : Ligne 64 :
</syntaxhighlight>
</syntaxhighlight>


=== JokeAPI ===
 
Prix des cryptomonnaies
<syntaxhighlight lang="bash" copy>
curl "https://v2.jokeapi.dev/joke/Any?lang=fr"
</syntaxhighlight>


[[Catégorie: Linux]]
[[Catégorie: Linux]]

Version du 29 mai 2025 à 01:10

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