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

Aucun résumé des modifications
 
Ligne 1 : Ligne 1 :
=== 🟢 <code>cmatrix</code> ===
'''Effet Matrix dans le terminal'''
* '''Description''' : Affiche une animation inspirée du film ''Matrix'', avec des caractères verts qui tombent en cascade.
* '''Utilisation''' : <code>bash    cmatrix</code>
* '''Options utiles''' :
** <code>-s</code> : mode “slow scroll”
** <code>-b</code> : fond noir
** <code>-u</code> : vitesse (ex. <code>-u 5</code>)
<syntaxhighlight lang="bash" line>
cmatrix
cmatrix -b -r -u5 -s
cmatrix -o
</syntaxhighlight>
-----
=== 🕒 <code>tty-clock</code> ===
'''Horloge numérique dans le terminal'''
* '''Description''' : Affiche une horloge en grand format dans le terminal, idéale pour les dashboards ou les écrans d’attente.
* '''Utilisation''' : <code>bash    tty-clock</code>
* '''Options utiles''' :
** <code>-s</code> : affiche les secondes
** <code>-c</code> : centre l’horloge
** <code>-C &lt;couleur&gt;</code> : change la couleur (ex. <code>-C 4</code> pour bleu)
<syntaxhighlight lang="bash" line copy>
tty-clock -scrSB
</syntaxhighlight>
ou
<syntaxhighlight lang="bash" line copy>
tty-clock -sScC 1
</syntaxhighlight>
-----
=== 🐱 <code>nyancat</code> ===
'''Animation du célèbre mème Nyan Cat'''
* '''Description''' : Affiche une version ASCII animée du mème Nyan Cat dans le terminal.
* '''Utilisation''' : <code>bash    nyancat</code>
* '''Remarque''' : Nécessite une connexion réseau pour certaines versions (client/serveur).
<syntaxhighlight lang="bash" line copy>
nyancat
</syntaxhighlight>
-----
=== 🐄 <code>cowsay</code> ===
'''Fait parler une vache (ou autre personnage) en ASCII'''
* '''Description''' : Affiche un message dans une bulle de dialogue avec une vache ASCII.
* '''Utilisation''' : <code>bash    cowsay &quot;Bonjour John !&quot;</code>
* '''Options utiles''' :
** <code>-f tux</code> : change le personnage (ex. Tux, dragon, etc.)
** Combinez avec <code>fortune</code> pour des messages aléatoires : ```bash fortune | cowsay
<syntaxhighlight lang="bash" copy>
cowsay "Hello, World!"
</syntaxhighlight>
ou
<syntaxhighlight lang="bash" copy>
cowsay -f dragon "I am a dragon! RAWR!"
</syntaxhighlight>
=== qrencode ===
=== qrencode ===
Génère un QR code en terminal.
Génère un QR code en terminal.
Ligne 55 : Ligne 124 :
</syntaxhighlight>
</syntaxhighlight>


=== cowsay ===
<syntaxhighlight lang="bash" copy>
cowsay "Hello, World!"
</syntaxhighlight>
ou
<syntaxhighlight lang="bash" copy>
cowsay -f dragon "I am a dragon! RAWR!"
</syntaxhighlight>


=== Emoji ===
=== Emoji ===