Operations 4 min read

6 Fun Linux Commands That Make Your Terminal Come Alive

This article showcases six entertaining Linux commands—pv, toilet, rig, aview, xeyes, and cowsay—explaining how to install them, use them with example code, and displaying the quirky visual output each command produces in the terminal.

MaGe Linux Operations
MaGe Linux Operations
MaGe Linux Operations
6 Fun Linux Commands That Make Your Terminal Come Alive

This article introduces several interesting Linux commands that add visual effects or fun output to the terminal.

1. pv command

The pv command can display text at a controlled rate, creating a subtitle‑like effect.

# yum install pv    [On RedHat based Systems]
# sudo apt-get install pv    [On Debian based Systems]

Run the following command to see the effect:

$ echo "Tecmint.com is a community of Linux Nerds and Geeks" | pv -qL 10

Result:

2. toilet command

The toilet command adds decorative borders to text output.

Install it via yum or apt‑get, then run:

$ while true; do echo "$(date | toilet -f term -F border –Tecmint)"; sleep 1; done

Result:

3. rig command

rig generates random personal or place names.

Install it via yum or apt‑get, then run: #rig Result:

4. aview command

aview displays an image as ASCII art in the terminal.

Install it via yum or apt‑get, then run: $ asciiview elephant.jpg -driver curses Result:

5. xeyes command

xeyes is a graphical program that shows a pair of eyes following the cursor.

Install it via yum or apt‑get, then run: $ xeyes Result:

6. cowsay command

cowsay prints a message inside an ASCII animal shape.

Install it via yum or apt‑get, then list available shapes: $ cowsay -l Run an example: $ cowsay -f elephant-in-snake Tecmint is Best Result:

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

LinuxPVFun Commandscowsaytoiletaviewrig
MaGe Linux Operations
Written by

MaGe Linux Operations

Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.