Linux中國
10 條真心有趣的 Linux 命令
在終端工作是一件很有趣的事情。今天,我們將會列舉一些有趣得為你帶來歡笑的Linux命令。
1. rev
創建一個文件,在文件裡面輸入幾個單詞,rev命令會將你寫的東西反轉輸出到控制台。
# rev <file name>
2. fortune
這個命令沒有被默認安裝,用apt-get命令安裝它,fortune命令會隨機顯示一些句子
crank@crank-System:~$ sudo apt-get install fortune
利用fortune命令的 -s 選項,他會限制一個句子的輸出長度。
# fortune -s
3. yes
# yes <string>
這個命令會不停列印字元串,直到用戶把這進程給結束掉。
# yes unixmen
4. figlet
這個命令可以用apt-get安裝,安裝之後,在/usr/share/figlet可以看到一些ascii字體文件。
cd /usr/share/figlet
#figlet -f <font> <string>
#figlet -f big.flf unixmen
#figlet -f block.flf unixmen
當然,你也可以嘗試使用其他的選項。
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
6. bb
# apt-get install bb
# bb
看看會輸出什麼?
7. sl
有的時候你可能把 ls 誤打成了 sl,其實 sl 也是一個命令,如果你打 sl的話,你會看到一個移動的火車頭
# apt-get install sl
# sl
8. cowsay
一個很常見的命令,它會用ascii顯示你想說的話。
apt-get install cowsay
# cowsay <string>
或者,你可以用其他的角色來取代默認角色來說這句話,這些角色都存儲在/usr/share/cowsay/cows目錄下
# cd /usr/share/cowsay/cows
cowsay -f ghostbusters.cow unixmen
或者
# cowsay -f bud-frogs.cow Rajneesh
9. toilet
你沒看錯,這是個命令來的,他會將字元串以彩色的ascii字元串形式輸出到終端
# apt-get install toilet
# toilet --gay unixmen
toilet -F border -F gay unixmen
toilet -f mono12 -F metal unixmen
10. aafire
aafire能讓你的終端燃起來。
# apt-get install libaa-bin
# aafire
就這麼多,祝你們在Linux終端玩得開心哈!!!
via: http://www.unixmen.com/list-10-funny-linux-commands/
作者:Rajneesh Upadhyay 譯者:tnuoccalanosrep 校對:wxy
本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive
對這篇文章感覺如何?
太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
More in:Linux中國
如何通過 VLC 使用字幕
使用 VLC 媒體播放器播放和管理字幕的新手指南。
Unix 桌面:在 Linux 問世之前
僅僅開源還不足以實現開放,還需開放標準和建立共識。
Valve 對於 Ubuntu 的 Snap 版本的 Steam 並不滿意:原因何在
你可能會發現,Snap 版本的 Steam 並不如你期待的那樣好,你怎麼看?
Wine 9.0 發布,實驗性地加入了 Wayland 驅動
Wine 的這個新版本正在為未來做好準備!