写点什么

linux 几个没用但是有趣的命令

用户头像
入门小站
关注
发布于: 2 小时前

figlet 字符画

figlet 可以将英文字符串以字符画的形式输出

安装

> yum install figlet -y
复制代码

运行

> figlet rumenz.com                                                           _ __ _   _ _ __ ___   ___ _ __  ____  ___ ___  _ __ ___  | '__| | | | '_ ` _ \ / _ \ '_ \|_  / / __/ _ \| '_ ` _ \ | |  | |_| | | | | | |  __/ | | |/ / | (_| (_) | | | | | ||_|   \__,_|_| |_| |_|\___|_| |_/___(_)___\___/|_| |_| |_|
复制代码

aafire 火焰

安装

> yum install aafire -y
复制代码

运行

> aafire
复制代码


fortune 随机句子

安装

> yum install fortune-mod
复制代码

运行

> fortuneWe only acknowledge small faults in order to make it appear that we arefree from great ones.                -- La Rouchefoucauld
复制代码

yes 重复输出一句话

yes 命令重复输出一句话:


> yes hello,worldhello,worldhello,worldhello,world
复制代码

sl 小火车

安装

> yum install -y sl
复制代码

运行

> sl
复制代码


cowsay 会说话的牛

运行

安装

> yum install cowsay -y
复制代码

运行

> cowsay "rumenz.com" ____________< rumenz.com > ------------        \   ^__^         \  (oo)\_______            (__)\       )\/\                ||----w |                ||     ||
// 查看支持的动物> cowsay -l
//使用-f 参数切换小动物
> cowsay -f tux "我是一只小鸭子" _________< 我是一只小鸭子 > --------- \ \ .--. |o_o | |:_/ | // \ \ (| | ) /'\_ _/`\ \___)=(___/
复制代码

cmatrix 黑客帝国

安装

> wget https://jaist.dl.sourceforge.net/project/cmatrix/cmatrix/1.2a/cmatrix-1.2a.tar.gztar -zxvf cmatrix-1.2a.tar.gzcd cmatrix-1.2a./configure && make && make install
复制代码

运行

> cmatrix 
复制代码


asciiquarium 水族馆

安装

> yum install perl-Curses perl-ExtUtils-MakeMaker perl-Data-Dumper -y> cd /tmp> wget http://search.cpan.org/CPAN/authors/id/K/KB/KBAUCOM/Term-Animation-2.6.tar.gz> tar -zxvf Term-Animation-2.6.tar.gz> cd Term-Animation-2.6/> perl Makefile.PL && make && make test> make install> cp asciiquarium /usr/local/bin> chmod 0755 /usr/local/bin/asciiquarium
复制代码

运行

> asciiquarium 
复制代码


asciiview 图片转换字符画

asciiview 命令可以将任意图片转换成字符画的形式输出,安装方法如下:


> sudo apt-get install aview imagemagick> asciiview hepburn.pen
复制代码


hollywood 好莱坞黑客的屏幕

安装

> sudo apt-get update> sudo apt-get install byobu hollywood 
复制代码

运行

> sudo apt-get install hollywood
复制代码


ninvaders 太空入侵者

安装

> sudo apt-get install ninvaders
复制代码

运行

> ninvaders
复制代码


bastet 俄罗斯方块

安装

> sudo apt-get install bastet
复制代码

执行

> bastet
复制代码



原文链接:https://rumenz.com/rumenbiji/linux-useless-interesting.html

微信公众号:入门小站

发布于: 2 小时前阅读数: 4
用户头像

入门小站

关注

还未添加个人签名 2020.01.18 加入

还未添加个人简介

评论

发布
暂无评论
linux几个没用但是有趣的命令