欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

有趣的Linux命令

程序员文章站 2022-03-09 14:28:13
...

1. sl 命令

你会看到一辆火车从屏幕右边开往左边。。。。。。

安装  $ sudo apt-get install sl 
运行  $ sl

命令有 -alFe几个选项,

-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.

有趣的Linux命令

 

可以给别人来个恶作剧,他一敲ls,不知道的肯定很有效果

$alias ls=sl

2. fortune  命令

输出一句话,有笑话,名言什么的 (还有唐诗宋词sudo apt-get install fortune-zh)

安装 $sudo apt-get install fortune

运行 $fortune

有趣的Linux命令

 

3. cowsay 命令

用ASCII字符打印牛,羊等动物,还有个cowthink,这个是奶牛想,那个是奶牛说,哈哈,差不多

安装  $sudo apt-get install cowsay

运行  $cowsay "I am not a cow, hahaha"

 有趣的Linux命令

$cowsay -l  查看其它动物的名字,然后-f跟上动物名,如

$cowsay -f tux "坑爹啊"

有趣的Linux命令

还可以让cowsay说出fortune的内容,就像这样:

$fortune | cowsay

有趣的Linux命令

 

4. cmatrix 命令

这个很酷!《黑客帝国》那种矩阵风格的动画效果

安装   $ sudo apt-get install cmatrix

运行   $cmatrix

有趣的Linux命令

 

5. figlet 、toilet命令

艺术字生成器,由ASCII字符组成,把文本显示成标题栏。此外还有banner这个命令

安装  $sudo apt-get install figlet

       $sudo apt-get install toilet

运行  $figlet fuck you !

        $toilet i love you

有趣的Linux命令

toilet还可以添加颜色,里面的选项请自己man一下

$ toilet -f mono12 -F gay a girl

有趣的Linux命令


aaa@qq.com:~# while true; do echo "$(date '+%D %T' | toilet -f term -F border --gay)"; sleep 1; done
有趣的Linux命令
 

6. oneko 命令

桌面上出现一直喵星人,跟着你的鼠标跑,你不动了它就睡觉。哈哈,这个挺不错

安装 $sudo apt-get install oneko

运行 $oneko               要关掉这家伙,按ctrl+c 结束

有趣的Linux命令

 

7. xeyes 命令

在屏幕上出现一双眼睛,盯着你的鼠标指针

安装运行同上

有趣的Linux命令

 

8. yes 命令

输出无穷无尽的字符,按ctrl+c结束,如

$yes  我很NB

 

9. cal 9 1752

cal是打印日历,不过这个是很奇葩的一个月,

有趣的Linux命令

10. shred

覆盖搞乱文件,就是文档粉碎,哈哈,要把你私藏的大片种子和电影销毁,不被恢复出来,就靠它了

11. factor

分解因数,这个。。。小学生可以用一下

有趣的Linux命令

12. 挨个敲下面这一堆, aptitude没有的可以安装上

aptitude moo
aptitude -v moo
aptitude -vv moo
aptitude -vvv moo
aptitude -vvvv moo
aptitude -vvvvv moo
aptitude -vvvvvv moo
aptitude -vvvvvvv moo

 

13. pv

$ echo "Tecmint[dot]com is a community of Linux Nerds and Geeks" | pv -qL 10
有趣的Linux命令

pv command in action

Note: The ‘q‘ option means ‘quite’, no output information and option ‘L‘ means the Limit of Transfer of bytes per second. The number value can be adjusted in either direction (must be integer) to get desired simulation of text.


这些好玩的命令可以通过查man手册,然后在加上自己想出来的创意,改编成更多有趣的东西,哈哈,给别人捣乱也是挺好玩的。。。。(参考)


转载于:https://my.oschina.net/sukai/blog/136556