Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 10, 2022 04:52 pm GMT

Top fun Linux cmdto 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

Centos :

sudo yum install -y sl
  • How to use ?
sl

or

while true; do sl ; done;

sl_cmd_gif

2. cmd lolcat

  • How to install ?> Ubuntu :
sudo snap install lolcat-c

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

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

or you can try that with the cmd sl

while true; do sl | lolcat ; done;

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

3. cmd cmatrix

  • How to install ?> Ubuntu :
sudo apt install -y cmatrix

Centos :

sudo yum install -y cmatrix
  • How to use ?
cmatrix

Image description

4. cmd aafire

  • How to install ?> Ubuntu :
sudo apt install -y libaa-bin

Centos :

sudo yum install -y aalib
  • How to use ?
aafire

Image description

5. cmd cowsay

  • How to install ?> Ubuntu :
sudo apt install -y cowsay

Centos :

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

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

Centos :

snap install asciiquarium
  • How to use ?
asciiquarium

Image description

7. cmd figlet

  • How to install ?
sudo snap install figlet
  • How to use ?
figlet Linux is Fun

or with lolcat

echo -e "Don't touch 
my Laptop" | figlet | lolcat

Image description

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


Original Link: https://dev.to/wi11i4m/top-fun-linux-cmdto-try-right-now-36n5

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To