Linux中國

10 條真心有趣的 Linux 命令

在終端工作是一件很有趣的事情。今天,我們將會列舉一些有趣得為你帶來歡笑的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中國 榮譽推出


本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive

對這篇文章感覺如何?

太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
雨落清風。心向陽

    You may also like

    Leave a reply

    您的電子郵箱地址不會被公開。 必填項已用 * 標註

    此站點使用Akismet來減少垃圾評論。了解我們如何處理您的評論數據

    More in:Linux中國