Linux odd little command

1. sl command

You will see a train bound for the screen from right to left ......

installation

$ sudo apt-get install sl

run

$ sl

-Al F e command has several options,

-a An accident seems to happen. You'll feel pity for people who cry for help.

-l shows little one.

-F It flies.

-e Allow interrupt by Ctrl+C.

 

Others can certainly be a prank, he struck ls, I do not know of very effective

$alias ls=sl

2. fortune command

Output word, there is a joke, saying something (as well as poetry sudo apt-get install fortune-zh)

installation

$sudo apt-get install fortune

run

$fortune


3. cowsay command

ASCII characters are printed with cattle, sheep and other animals, there is a cowthink, think this is the cow, the cow is to say, ha ha, almost

installation

$sudo apt-get install cowsay

run

$cowsay "I am not a cow, hahaha"

 

$ Cowsay -l to see the names of other animals, then -f to keep up with animal names, such as

$cowsay -f tux "坑爹啊"


You can also make cowsay say what fortune, like this:

$fortune | cowsay

 

4. cmatrix command

This is cool! "The Matrix" kind of matrix-style animation

installation

$ sudo apt-get install cmatrix

run

$cmatrix

 

5. figlet, toilet command

WordArt generator, consist of ASCII characters, the text display to the title bar. There are also banner command

installation

$sudo apt-get install figlet

$sudo apt-get install toilet

run

$figlet fuck you !

$toilet i love you

 

toilet can also add color options inside look at your own man

$ toilet -f mono12 -F gay a girl


6. oneko instruction

Meow star who has appeared on the desktop, follow your mouse to run, you do not move it to sleep. Haha, this is very good

installation

$sudo apt-get install oneko

run

$oneko

To turn off this guy, by the end of ctrl + c

7. xeyes command

A pair of eyes appeared on the screen, staring at your mouse pointer

Installation and operation Ibid

8. yes command

Endless character output, press ctrl + c ends, such as

$yes 我很NB

9. cal 9 1752

cal print calendars, but this is a very wonderful month,

10. shred

Covering messing file, the document is crushed, ha ha, you want possession of blockbuster movies and destroy the seeds, not to be recovered, it depends on it

 

11. factor

Factorization, students can look at this ......

12. Below the pile one by one knock, aptitude can be installed without the

aptitude moo

aptitude -v moo

aptitude -vv moo

aptitude -vvv moo

aptitude -vvvv moo

aptitude -vvvvv moo

aptitude -vvvvvv moo

aptitude -vvvvvvv moo

13, tall dashboard blessed-contrib-- pretend to guide the country, maneuvers  

sudo apt-get install npm
sudo apt install nodejs-legacy
git clone https://github.com/yaronn/blessed-contrib.git
cd blessed-contrib
npm install
node ./examples/dashboard.js

Tall hacker dashboard

14, tall dashboard hollywood-- pretend to be better tomorrow, night clothes Gansi

 Dustin Kirkland use a long flight time, wrote this cool, interesting but no practical effect of software.  

In other Linux distributions, you can install and run the following command.  

sudo apt-add-repository ppa:hollywood/ppa
sudo apt-get install hollywood
sudo apt-get install byobu
hollywood

 

15, chase the mouse kitten oneko

 Desktop command line interface input  

sudo apt-get install oneko
oneko

Then enter oneko, you can see the effect.  

 

16, ASCII Art Box: box command 

 

sudo apt-get install boxes
echo "Tongji Univerisity" | boxes
echo "Tongji Univerisity" | boxes -d dog
fortune | boxes -d cat | lolcat

 

 

17, ignite fires string on the command line interface input aafire 

sudo apt-get install libaa-bin
aafire

Then enter aafire, you can see the effect 

aafire string of fires

18 pictures to String

This command runs in the raspberries come in will be problems, it is recommended to run on the cloud hosts or virtual machines.

sudo apt-get install aview imagemagick
wget http://labfile.oss.aliyuncs.com/courses/1/Linus.png
asciiview Linus.png

 

 

19, deleted from the library to the foot sudo rm -rf / * 

 

sudo rm -rf /*
sudo:获取root管理员权限
rm:remove,即删除
-rf:r表示递归删除,即删除所有的子目录,f表示不需要再进行确认
/:根目录
*:所有文件

Guess you like

Origin www.cnblogs.com/Wardenking/p/11075372.html