DEV Community

Arthur William
Arthur William

Posted on

Top fun🤩 Linux cmd🔥to try right now ✅

This is my favorite command to have fun when using linux.

1. cmd sl âš¡

  • How to install ? > Ubuntu :
sudo apt install -y sl
Enter fullscreen mode Exit fullscreen mode

Centos :

sudo yum install -y sl
Enter fullscreen mode Exit fullscreen mode
  • How to use ?
sl
Enter fullscreen mode Exit fullscreen mode

or

while true; do sl ; done;
Enter fullscreen mode Exit fullscreen mode

sl_cmd_gif

2. cmd lolcat âš¡

  • How to install ? > Ubuntu :
sudo snap install lolcat-c
Enter fullscreen mode Exit fullscreen mode

Centos : (install snap with sudo yum install -y snapd if you don't have)

sudo snap install lolcat-c
Enter fullscreen mode Exit fullscreen mode
  • How to use ? This command take the output from another command and adds rainbow coloring to it.
echo "Ubuntu > 2*Windows 11" | lolcat
Enter fullscreen mode Exit fullscreen mode

or you can try that with the cmd sl

while true; do sl | lolcat ; done;
Enter fullscreen mode Exit fullscreen mode

Don't work with older version of lolcat.
Image description

3. cmd cmatrix âš¡

  • How to install ? > Ubuntu :
sudo apt install -y cmatrix
Enter fullscreen mode Exit fullscreen mode

Centos :

sudo yum install -y cmatrix
Enter fullscreen mode Exit fullscreen mode
  • How to use ?
cmatrix
Enter fullscreen mode Exit fullscreen mode

Image description

4. cmd aafire âš¡

  • How to install ? > Ubuntu :
sudo apt install -y libaa-bin
Enter fullscreen mode Exit fullscreen mode

Centos :

sudo yum install -y aalib
Enter fullscreen mode Exit fullscreen mode
  • How to use ?
aafire
Enter fullscreen mode Exit fullscreen mode

Image description

5. cmd cowsay âš¡

  • How to install ? > Ubuntu :
sudo apt install -y cowsay
Enter fullscreen mode Exit fullscreen mode

Centos :

sudo yum install -y cowsay
Enter fullscreen mode Exit fullscreen mode
  • How to use ?
cowsay I love DevOps | lolcat
Enter fullscreen mode Exit fullscreen mode

Image description

6. cmd asciiquarium âš¡

  • How to install ? (install snap with sudo apt install -y snapd in Ubuntu or sudo yum install -y snapd in Centos if you don't have) > Ubuntu :
snap install asciiquarium
Enter fullscreen mode Exit fullscreen mode

Centos :

snap install asciiquarium
Enter fullscreen mode Exit fullscreen mode
  • How to use ?
asciiquarium
Enter fullscreen mode Exit fullscreen mode

Image description

7. cmd figlet âš¡

  • How to install ?
sudo snap install figlet
Enter fullscreen mode Exit fullscreen mode
  • How to use ?
figlet Linux is Fun
Enter fullscreen mode Exit fullscreen mode

or with lolcat

echo -e "Don't touch \nmy Laptop" | figlet | lolcat
Enter fullscreen mode Exit fullscreen mode

Image description

Don't forget to try that right now🤨!!!

Top comments (2)

Collapse
 
zachsanford profile image
Zach Sanford

There were a few I did not know about. Awesome list!

Collapse
 
wi11i4m profile image
Arthur William

thanks for your comment, I am happy to have made you discover new things