码迷,mamicode.com
首页 > 系统相关 > 详细

10 条有趣的 Linux 命令

时间:2016-03-21 22:54:19      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:

在终端工作是一件很有趣的事情。今天,我们将会列举一些有趣得为你带来欢笑的Linux命令。

1. rev

创建一个文件,在文件里面输入几个单词,rev命令会将你写的东西反转输出到控制台。

  1. # rev <file name>

技术分享

Selection_002

技术分享

Selection_001

 

2. fortune

这个命令没有被默认安装,用apt-get命令安装它,fortune命令会随机显示一些句子

  1. crank@crank-System:~$ sudoapt-get install fortune

技术分享

Selection_003

利用fortune命令的_s 选项,他会限制一个句子的输出长度。

  1. # fortune -s

技术分享

Selection_004

 

3. yes

  1. #yes<string>

这个命令会不停打印字符串,直到用户把这进程给结束掉。

  1. #yes unixmen

技术分享

Selection_005

 

4. figlet

这个命令可以用apt-get安装,安装之后,在/usr/share/figlet可以看到一些ascii字体文件。

  1. cd/usr/share/figlet

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

技术分享

Selection_006

#figlet -f block.flf  unixmen

技术分享

Selection_007

当然,你也可以尝试使用其他的选项。

 

5. asciiquarium

这个命令会将你的终端变成一个海洋馆。

下载term animator:

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

安装并且配置这个包:

  1. #tar-zxvf Term-Animation-2.4.tar.gz
  2. #cdTerm-Animation-2.4/
  3. # perl Makefile.PL &&make&&maketest
  4. #sudomake install

接着安装下面这个包:

  1. #apt-get install libcurses-perl

下载并且安装asciiquarium:

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

执行如下命令:

  1. # /usr/local/bin/asciiquarium

技术分享

asciiquarium_1.1 : perl_008

 

6. bb

  1. #apt-get install bb
  2. # bb

看看会输出什么?

技术分享

Selection_009

 

7. sl

有的时候你可能把 ls 误打成了 sl,其实 sl 也是一个命令,如果你打 sl的话,你会看到一个移动的火车头

  1. #apt-get install sl

  1. # sl

技术分享

Selection_012

 

8. cowsay

一个很常见的命令,它会用ascii显示你想说的话。

  1. apt-get install cowsay

  1. # cowsay <string>

技术分享

Selection_013

或者,你可以用其他的角色来取代默认角色来说这句话,这些角色都存储在/usr/share/cowsay/cows目录下

  1. #cd/usr/share/cowsay/cows

  1. cowsay -f ghostbusters.cow unixmen

技术分享

Selection_014

或者

  1. # cowsay -f bud-frogs.cow Rajneesh

技术分享

Selection_015

 

9. toilet

你没看错,这是个命令来的,他会将字符串以彩色的ascii字符串形式输出到终端

  1. #apt-get install toilet

  1. # toilet --gay unixmen

技术分享

Selection_016

  1. toilet -F border -F gay unixmen

技术分享

Selection_020

  1. toilet -f mono12 -F metal unixmen

技术分享

Selection_018

 

10. aafire

aafire能让你的终端燃起来。

  1. #apt-get install libaa-bin

  1. # aafire

技术分享

Selection_019

就这么多,祝你们在Linux终端玩得开心哈!!!

 

原文链接:http://www.linuxidc.com/Linux/2015-09/123411.htm

10 条有趣的 Linux 命令

标签:

原文地址:http://www.cnblogs.com/cnrush/p/5304060.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!