10 條真心有趣的 Linux 命令

Rajneesh Upadhyay發表於2015-09-22

在終端工作是一件很有趣的事情。今天,我們將會列舉一些有趣得為你帶來歡笑的Linux命令。

1. rev

建立一個檔案,在檔案裡面輸入幾個單詞,rev命令會將你寫的東西反轉輸出到控制檯。

# rev  <file name>

Selection_002

Selection_001

2. fortune

這個命令沒有被預設安裝,用apt-get命令安裝它,fortune命令會隨機顯示一些句子

crank@crank-System:~$ sudo apt-get install fortune

Selection_003

利用fortune命令的 -s 選項,他會限制一個句子的輸出長度。

# fortune -s

Selection_004

3. yes

# yes <string>

這個命令會不停列印字串,直到使用者把這程式給結束掉。

# yes unixmen

Selection_005

4. figlet

這個命令可以用apt-get安裝,安裝之後,在/usr/share/figlet可以看到一些ascii字型檔案。

cd /usr/share/figlet

#figlet -f <font>  <string>
#figlet -f big.flf unixmen

Selection_006

#figlet -f block.flf  unixmen

Selection_007

當然,你也可以嘗試使用其他的選項。

5. asciiquarium

這個命令會將你的終端變成一個海洋館。

下載term animator:

# wget http://search.cpan.org/CPAN/authors/id/K/KB/KBAUCOM/Term-Animation-2.4.tar.gz

安裝並且配置這個包:

# tar -zxvf Term-Animation-2.4.tar.gz
# cd Term-Animation-2.4/
# perl Makefile.PL && make && make test
# sudo make install

接著安裝下面這個包:

# apt-get install libcurses-perl

下載並且安裝asciiquarium:

# wget http://www.robobunny.com/projects/asciiquarium/asciiquarium.tar.gz
# tar -zxvf asciiquarium.tar.gz 
# cd asciiquarium_1.0/
# cp asciiquarium /usr/local/bin/

執行如下命令:

# /usr/local/bin/asciiquarium

asciiquarium_1.1 : perl_008

6. bb

# apt-get install bb
# bb

看看會輸出什麼?

Selection_009

7. sl

有的時候你可能把 ls 誤打成了 sl,其實 sl 也是一個命令,如果你打 sl的話,你會看到一個移動的火車頭

# apt-get install sl

# sl

Selection_012

8. cowsay

一個很常見的命令,它會用ascii顯示你想說的話。

apt-get install cowsay

# cowsay <string>

Selection_013

或者,你可以用其他的角色來取代預設角色來說這句話,這些角色都儲存在/usr/share/cowsay/cows目錄下

# cd /usr/share/cowsay/cows

cowsay -f ghostbusters.cow  unixmen

Selection_014

或者

# cowsay -f bud-frogs.cow Rajneesh

Selection_015

9. toilet

你沒看錯,這是個命令來的,他會將字串以彩色的ascii字串形式輸出到終端

# apt-get install toilet

# toilet --gay unixmen

Selection_016

toilet -F border -F gay unixmen

Selection_020

toilet  -f mono12 -F metal  unixmen

Selection_018

10. aafire

aafire能讓你的終端燃起來。

# apt-get install libaa-bin

# aafire

Selection_019

就這麼多,祝你們在Linux終端玩得開心哈!!!


via: http://www.unixmen.com/list-10-funny-linux-commands/

作者:Rajneesh Upadhyay 譯者:tnuoccalanosrep 校對:wxy

本文由 LCTT 原創編譯,Linux中國 榮譽推出

相關文章