有趣的linux命令小记
程序员文章站
2024-01-02 17:37:22
1、banner$ sudo apt-get update$ sudo apt-get install sysvbanner$ sudo apt-get install toilet$ sudo apt-get install figlet# 输出图形字符$ banner world$ toilet world$ figlet world# -w 打印宽度$ printerbanner -w 50 bd2、xeyes$ xeyes# 放后台运行$ nohup xeyes...
目录
以下在实验楼操作
1、banner、toilet、figlet——艺术字
$ sudo apt-get update
$ sudo apt-get install sysvbanner
$ sudo apt-get install toilet
$ sudo apt-get install figlet
# 输出图形字符
$ banner world
$ toilet world
$ figlet world
# -w 打印宽度
$ printerbanner -w 50 bd
2、xeyes——眼睛
$ xeyes
# 放后台运行
$ nohup xeyes &
3、cmatrix——字节流
$ sudo apt-get update;
$ sudo apt-get install cmatrix
# Ctrl+C终止
$ cmatrix
# F11或Fn+F11 可全屏
$ cmatrix -C blue
4、aafire——火焰
$ sudo apt-get install libaa-bin
$ aafire
5、ninvaders——Space Invaders:太空侵略者
$ sudo apt-get install ninvaders
$ /usr/games/ninvaders
6、bb——字符串
$ sudo apt-get update
$ sudo apt-get install bb
$ /usr/games/bb
# 键入Y后选择8 或 键入N
7、hollywood——仪表盘
$ sudo apt-get update
$ sudo apt-get install hollywood
#创建分屏,混乱文字的基于文本的窗口管理器
$ sudo apt-get install byobu
$ hollywood
# 按两次ctrl+C,输入exit才可以退出
8、cowsay——动物说话
$ sudo apt update
$ sudo apt install -y cowsay
# 默认是牛(/usr/share/cowsay/cows)
$ cowsay hello world!
# 使用'-l'参数查看可以用的所有种类
$ cowsay -l
# 使用'-f'参数选择动物种类
$ cowsay -f koala wonderful
# 安装 fortune-zh
$ sudo apt-get install fortune-zh
# 结合fortune 命令使用(/usr/games/fortune)
$ fortune | cowsay -f dragon
9、asciiview——图片转换为 ascii 字符(黑白)
$ sudo apt update
# 安装aview和imagemagick
$ sudo apt install -y aview imagemagick
# 下载图片
$ wget http://labfile.oss.aliyuncs.com/courses/1/Linus.png
# 显示Linus大神的照片
$ asciiview Linus.png
10、cacaview——图片转换为 ascii 字符(彩色)
$ sudo apt-get install caca-utils
$ cacaview Linus.png
$ cacademo
$ cacafire
本文地址:https://blog.csdn.net/heinara/article/details/107349454