几个有趣的Linux命令
程序员文章站
2022-03-09 14:27:19
...
1.sl命令
### 你会看到一辆火车从屏幕右边开往左边……
安装
$ sudo apt-get install sl
运行
$ sl
命令有 -a l F e 几个选项,
-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.
2.fortune 命令
输出一句话,有笑话,名言什么的 (还有唐诗宋词sudo apt-get install fortune-zh)
安装
$ sudo apt-get install fortune
运行
$ fortune
3.cowsay 命令
用ASCII字符打印牛,羊等动物,还有个cowthink,这个是奶牛想,那个是奶牛说,哈哈,差不多
安装
$ sudo apt-get install cowsay
运行
$ cowsay "I am not a cow"
$ cowsay -l
查看其它动物的名字,然后 -f 跟上动物名,如
$ cowsay -f tux "牛逼"
还可以让cowsay说出fortune的内容,就像这样:
$ fortune | cowsay
4.cmatrix 命令
这个很酷!《黑客帝国》那种矩阵风格的动画效果
安装
$ sudo apt-get install cmatrix
运行
$ cmatrix
5.figlet 、toilet命令
艺术字生成器,由ASCII字符组成,把文本显示成标题栏。此外还有banner这个命令
安装
$ sudo apt-get install figlet
$ sudo apt-get install toilet
运行
$ figlet B I G O
$ toilet I love BIGO
toilet 还可以添加颜色,里面的选项请自己 man 一下
$ toilet -f mono12 -F gay a girl
6.ASCII艺术框:box命令
安装
$ sudo apt-get install boxes
运行
$ echo "Tongji Univerisity" | boxes -d dog
7.aafire命令
燃起字符串大火aafire在命令行界面输入
安装
$ sudo apt-get install libaa-bin
运行
$ aafire
aafire字符串大火
8.图片转字符串
安装
$ sudo apt-get install aview imagemagick
$ wget http://labfile.oss.aliyuncs.com/courses/1/Linus.png
$ asciiview Linus.png
上一篇: 有趣的linux命令行工具-lolcat