Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What terminal tools are available in Linux

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the knowledge of "what terminal tools are there in Linux". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

1. Pv command

You may have seen the mock subtitles in the movie, and they seem to have been tapped out in real time. Wouldn't it be good if we could achieve such an effect in the terminal?

This can be done. We can install the pv' command on the Linux system through the 'apt' or' yum' tool. The installation commands are as follows.

The code is as follows:

# yum install pv

[on RedHat-based systems]

The code is as follows:

# sudo apt-get install pv

[on Debian-based systems]

After the pv' command is installed successfully, we try to run the following single-line command to see the effect of real-time text output on the terminal.

The code is as follows:

$echo "Tecmin [dot] com is a community of Linux Nerds and Geeks" | pv-qL 10

Note: the'Q 'option means' quiet', there is no other output, and the'L 'option represents the upper limit on the number of bytes converted per second. Adjust the value of the number (which must be an integer) to display the text effect in another direction.

2. Toilet command

How about using the one-line script command 'toilet' to display a framed text in the terminal? Also, you must make sure that toilet' is installed on your computer. If not, please use apt or yum installation. (translator's note: 'toilet' is not in Fedora's official warehouse, you can download the source code from github to install)

The code is as follows:

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

Note: the above script needs to be paused using the ctrl+z key.

3. Rig command

This command generates a random identity and address at a time. To run this command, you need to install 'rig'. with apt or yum (translator's note: 'rig' is not in Fedora's official warehouse, I only found Ubuntu's deb package on rpmseek, which can be used to install.)

The code is as follows:

# rig

4. Aview command

What do you think of displaying pictures in ASCII format at the terminal? We must install the package 'aview'. with apt or yum Translator's note: 'avieww' is not in Fedora's official repository. You can download the source code from aview's project home page to install it. There is a picture named 'elephant.jpg' in the current working directory, which I want to view in ASCII mode on the terminal.

The code is as follows:

$asciiview elephant.jpg-driver curses

5. Xeyes command

In the previous article, we introduced the 'oneko' command, which shows a mouse following the mouse pointer. Xeyes' is a similar graphics program. When you run it, you can see the little monster's two eyeballs following your mouse movement.

The code is as follows:

$xeyes

6. Cowsay command

Do you remember the last time we introduced this order? It can display a cow consisting of a predetermined piece of text and a character. What if you want to use other animals instead of cows? View a list of available animals:

The code is as follows:

$cowsay-l

How to use ASCII to describe a snake swallowing an elephant?

The code is as follows:

$cowsay-f elephant-in-snake Tecmint is Best

What would happen if it were a goat?

The code is as follows:

$cowsay-f gnu Tecmint is Best

This is the end of the content of "what terminal tools are in Linux". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report