20个有趣的Linux命令
写在前面:本博客为本人原创,严禁任何形式的转载!本博客只允许放在博客园(.cnblogs.com),如果您在其他网站看到这篇博文,请通过下面这个唯一的合法链接转到原文!
本博客全网唯一合法URL:http://www.cnblogs.com/acm-icpcer/p/8450414.html
Linux是一种乐趣!
命令1:sl(Steam Locomotive)
你可能知道的命令“ls”,即list命令,并经常使用它来查看文件夹的内容,但由于误打字有时候你会产生“SL”,如何在终端得到一点点的乐趣,而不是“ 命令未找到 “。
安装sl
root@howtoing:~# apt-get install sl (In Debian like OS)
root@howtoing:~# yum -y install sl (In Red Hat like OS)
输出
root@howtoing:~# sl
sl命令
当你键入'LS'而不是'ls'的这个命令也可使用。
命令2:telnet
不 ! 不 ! 它不是看起来那么复杂。 你会熟悉的telnet。 Telnet是一种面向文本的双向网络协议。这里没有什么要安装。你应该有一个Linux盒子和一个工作的互联网。
root@howtoing:~# telnet towel.blinkenlights.nl
telnet命令
命令3:fortune
怎么样让你的财富随意,有时在终端滑稽。
安装财富
root@howtoing:~# apt-get install fortune (for aptitude based system)
root@howtoing:~# yum install fortune (for yum based system)
root@howtoing:~# fortune
You're not my type. For that matter, you're not even my species!!!
Future looks spotty. You will spill soup in late evening.
You worry too much about your job. Stop it. You are not paid enough to worry.
Your love life will be... interesting.
命令4:rev(Reverse)
它反给它的每一个字符串,是不是很可笑。
root@howtoing:~# rev
123abc
cba321
xuniL eb ot nrob
born to be Linux
命令5:factor
时间为一些数学中,该命令输出一个给定号码的所有可能的因素。
root@howtoing:~# factor 5
5
5: 5
12
12: 2 2 3
1001
1001: 7 11 13
5442134
5442134: 2 2721067
命令6:脚本
OK罚款这不是一个命令和脚本,但它是好的。
root@howtoing:~# for i in {1..12}; do for j in $(seq 1 $i); do echo -ne $i×$j=$((i*j))\\t;done; echo;done
1×1=1
2×1=2 2×2=4
3×1=3 3×2=6 3×3=9
4×1=4 4×2=8 4×3=12 4×4=16
5×1=5 5×2=10 5×3=15 5×4=20 5×5=25
6×1=6 6×2=12 6×3=18 6×4=24 6×5=30 6×6=36
7×1=7 7×2=14 7×3=21 7×4=28 7×5=35 7×6=42 7×7=49
8×1=8 8×2=16 8×3=24 8×4=32 8×5=40 8×6=48 8×7=56 8×8=64
9×1=9 9×2=18 9×3=27 9×4=36 9×5=45 9×6=54 9×7=63 9×8=72 9×9=81
10×1=10 10×2=20 10×3=30 10×4=40 10×5=50 10×6=60 10×7=70 10×8=80 10×9=90 10×10=100
11×1=11 11×2=22 11×3=33 11×4=44 11×5=55 11×6=66 11×7=77 11×8=88 11×9=99 11×10=110 11×11=121
12×1=12 12×2=24 12×3=36 12×4=48 12×5=60 12×6=72 12×7=84 12×8=96 12×9=108 12×10=120 12×11=132 12×12=144
命令7:Cowsay
在终端的ASCII母牛会说你什么都想要。
安装Cowsay
root@howtoing:~# apt-get install cowsay (for Debian based OS)
root@howtoing:~# yum install cowsay (for Red Hat based OS)
输出
root@howtoing:~# cowsay I Love nix
____________
< I Love nix >
------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
如何pipelineing“fortune命令 ”,以cowsay上述?
root@howtoing:~# fortune | cowsay
_________________________________________
/ Q: How many Oregonians does it take to \
| screw in a light bulb? A: Three. One to |
| screw in the light bulb and two to fend |
| off all those |
| |
| Californians trying to share the |
\ experience. /
-----------------------------------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
注 :'|' 被称为流水线指令,并且其被用于其中一个命令的输出需要是另一个命令的输入的地方。 在上面的例子中的“ 幸运 ”命令充当'cowsay'命令的输入的输出。此流水线指令经常用于脚本和编程。 xcowsay是一个图形化程序,它响应类似于cowsay但在一个图形化的方式,因此它是cowsay第X。
apt-get install xcowsay
yum install xcowsay
输出
root@howtoing:~# xcowsay I Love nix
xcowsay命令
cowthink另一个命令只需运行“cowthink Linux是SOOO搞笑”并查看cowsay和cowthink的输出的差别。
apt-get install cowthink
yum install cowthink
输出
root@howtoing:~# cowthink ....Linux is sooo funny
_________________________
( ....Linux is sooo funny )
-------------------------
o ^__^
o (oo)\_______
(__)\ )\/\
||----w |
|| ||
命令8:是的
这是有趣的,但也是有用的,特别是在脚本和系统管理员 ,其中一个自动预定义响应可以传递给终端或产生。
root@howtoing:~# yes I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
I Love Linux
注 :(直到你中断即CTRL + C)。
命令9:厕所
什么?你在开玩笑,没有!肯定不是,但肯定这个命令本身太有趣了,我不知道从这个命令得到它的名字。
安装厕所
root@howtoing:~# apt-get install toilet
root@howtoing:~# yum install toilet
输出
root@howtoing:~# toilet howtoing
mmmmmmm " m
# mmm mmm mmmmm mmm m mm mm#mm mmm mmm mmmmm
# #" # #" " # # # # #" # # #" " #" "# # # #
# #"""" # # # # # # # # # # # # # #
# "#mm" "#mm" # # # mm#mm # # "mm # "#mm" "#m#" # # #
它甚至提供某种颜色和字体样式。
root@howtoing:~# toilet -f mono12 -F metal Howtoing.com
厕所命令
注意 :Figlet是另一指令或多或少提供这样一种在终端的效果。
命令10:cmatrix
你可能看过好莱坞电影“ 矩阵 ”,并将与权力着迷, 真得到了,看到矩阵予取予求或者你可能认为看起来都黑客的桌面动画的。
安装cmatrix
root@howtoing:~# apt-get install cmatrix
root@howtoing:~# yum install cmatrix
输出
root@howtoing:~# cmatrix
cmatrix命令
命令11:oneko
OK所以你相信Linux的鼠标指针是相同的愚蠢的黑色/白色指针,没有动画的谎言,所以我害怕你可能是错的。“oneko”是一个包,将附加一个“ 杰里 ”与你的鼠标指针,并与你一起指针移动。
安装oneko
root@howtoing:~# apt-get install oneko
root@howtoing:~# yum install oneko
输出
root@howtoing:~# oneko
oneko命令
注意 :一旦你关闭从oneko是运行终端, 杰里会消失,也不会在启动时启动。您可以添加应用程序以启动并继续享受。
命令12:叉子炸弹
这是一个非常讨厌的代码。需要您自担风险运行此。 这实际上是一个叉形炸弹,其指数倍增自己,直到所有的系统资源被利用,系统挂起。 (要检查上面的代码的权力,你应该尝试了一次,但所有风险自负,关闭和保存所有其他程序和文件运行叉炸弹之前)。
root@howtoing:~# :(){ :|:& }:
命令13:while
下面的“, 而”命令是一个脚本,直到你中断(Ctrl + C),它为您提供了彩色的日期和文件。只需复制并粘贴以下代码在终端。
root@howtoing:~# while true; do echo "$(date '+%D %T' | toilet -f term -F border --gay)"; sleep 1; done
Linux while命令
注意 :当与以下命令修改了上面的脚本,意志带给相似的输出,但有差别不大,检查一下在你的终端。
root@howtoing:~# while true; do clear; echo "$(date '+%D %T' | toilet -f term -F border --gay)"; sleep 1; done
命令14:espeak
只需将多媒体扬声器的旋钮旋到完全,然后将此命令粘贴到您的终端,让我们知道你是怎么听到神的声音。
安装espeak
root@howtoing:~# apt-get install espeak
root@howtoing:~# yum install espeak
输出
root@howtoing:~# espeak "Howtoing is a very good website dedicated to Foss Community"
命令15:aafire
在你的终端火如何。只要输入终端“aafire”,不带引号,看到了魔术。按任意键中断程序。
安装aafire
root@howtoing:~# apt-get install libaa-bin
输出
root@howtoing:~# aafire
aafire命令
命令16:bb
首先安装“apt-get的insatll bb”,然后输入“bb”,在终端,看看会发生什么。
root@howtoing:~# bb
bb命令
命令17:url
会不会是一个真棒感觉你,如果你可以更新你叽叽喳喳在你的朋友面前命令行状态 ,他们似乎留下深刻印象。 OK刚刚与您的用户名 , 密码和“ 你的身份信息 ”更换用户名 , 密码和状态消息 。
root@howtoing:~# url -u YourUsername:YourPassword -d status="Your status message" http://twitter.com/statuses/update.xml
命令18:ASCIIquarium
怎么会是让终端水族馆 。
root@howtoing:~# apt-get install libcurses-perl
root@howtoing:~# cd /tmp
root@howtoing:~# wget http://search.cpan.org/CPAN/authors/id/K/KB/KBAUCOM/Term-Animation-2.4.tar.gz
root@howtoing:~# tar -zxvf Term-Animation-2.4.tar.gz
root@howtoing:~# cd Term-Animation-2.4/
root@howtoing:~# perl Makefile.PL && make && make test
root@howtoing:~# make install
安装ASCIIquarium
立即下载并安装ASCIIquarium。
root@howtoing:~# cd /tmp
root@howtoing:~# wget http://www.robobunny.com/projects/asciiquarium/asciiquarium.tar.gz
root@howtoing:~# tar -zxvf asciiquarium.tar.gz
root@howtoing:~# cd asciiquarium_1.1/
root@howtoing:~# cp asciiquarium /usr/local/bin
root@howtoing:~# chmod 0755 /usr/local/bin/asciiquarium
最后运行在终端“asciiquarium”或“ 在/ usr / local / bin目录/ asciiquarium”不带引号,成为魔法将要发生在你眼前的一部分。
root@howtoing:~# asciiquarium
水族馆命令
命令19:funny manpages
首先安装“ 的apt-get安装搞笑,联机手册 ”,然后运行以下命令手册页。 他们中有些人可能是18岁以上 ,风险自担跑,他们都太可笑了。
baby
celibacy
condom
date
echo
flame
flog
gong
grope, egrope, fgrope
party
rescrog
rm
rtfm
tm
uubp
woman (undocumented)
xkill
xlart
sex
strfry
root@howtoing:~# man baby
命令20: Linux调整
现在是时候让你有一些单行调整 。
root@howtoing:~# world
bash: world: not found
root@howtoing:~# touch girls\ boo**
touch: cannot touch `girls boo**': Permission denied
root@howtoing:~# nice man woman
No manual entry for woman
root@howtoing:~# ^How did the sex change operation go?^
bash: :s^How did the sex change operation go?^ : substitution failed
root@howtoing:~# %blow
bash: fg: %blow: no such job
root@howtoing:~# make love
make: *** No rule to make target `love'. Stop.
$ [ whereis my brain?
sh: : [: missing ]
% man: why did you get a divorce?
man:: Too many arguments.
% !:say, what is saccharine?
Bad substitute.
server@localhost:/srv$ \(-
bash: (-: command not found
本人整理自:https://www.howtoing.com/20-funny-commands-of-linux-or-linux-is-fun-in-terminal
TZ@home
2018/2/16
by the way:大年初一的,祝大家新年快乐!
20个有趣的Linux命令的更多相关文章
- 20个实用的Linux命令
20个实用的Linux命令 2016-04-16 程序员之家 1. 命令:sl (蒸汽机车) 你可能了解 ‘ls’ 命令,并经常使用它来查看文件夹的内容.但是,有些时候你可能会拼写成 ‘sl’ ,这时 ...
- 40个超有趣的Linux命令行彩蛋和游戏
40个有趣的Linux命令行彩蛋和游戏,让你假装成日理万机的黑客高手.附一键安装脚本,在树莓派和ubuntu云主机上亲测成功,有些还可以在Windows的DOS命令行中运行. 本文配套B站视频:40个 ...
- 分享几个有趣的Linux命令
前言 最近工作比较忙,没时间写博客,这次介绍几个有趣的Linux命令. 命令:sl 当你使用这个命令时会看到一辆小火车从你的屏幕经过.亲测! 安装命令如下: yum -y install sl 执行效 ...
- 10个非常有趣的Linux命令【转载】
Linux当中有很多比较有趣的命令,可以动手看看,很简单的. 1.rev命令 一行接一行地颠倒所输入的字符串. 运行: $rev 如输入:shiyanlou shiyanlou rev.jpg 2.a ...
- [转载]几个有趣的Linux命令
本文给大家介绍几个有趣的Linux命令. 1. pv 命令 有时候我们在电影屏幕上看到一些字幕一个个匀速显示出来,像有人在边敲键盘,边显示一样.Linux上的pv命令可以实现这种效果. 默认情况下 ...
- 有趣的Linux命令,让终端炫起来
10条真心有趣的Linux命令 动画演示10个有趣但毫无用处的Linux命令 11个无用而有趣的Linux终端彩蛋 lolcat :一个在 Linux 终端中输出彩虹特效的命令行工具
- 10 条有趣的 Linux 命令
在终端工作是一件很有趣的事情.今天,我们将会列举一些有趣得为你带来欢笑的Linux命令. 1. rev 创建一个文件,在文件里面输入几个单词,rev命令会将你写的东西反转输出到控制台. # rev & ...
- 10个超有趣的linux命令
本文展示了 10 个有趣的 Linux 动态命令,这些命令和实用功能无关,仅供娱乐!看完此文,你会对 Linux 有个全新的认识,谁说 IT 男就没有屌丝娱乐的一面呢?还等什么,就让我们开始看文章吧~ ...
- 远程获得的有趣的linux命令
使用这些工具从远程了解天气.阅读资料等. 我们即将结束为期 24 天的 Linux 命令行玩具日历.希望你有一直在看,如果没有,请回到开始,从头看过来.你会发现 Linux 终端有很多游戏.消遣和奇怪 ...
随机推荐
- python thrift使用实例
前言 Apache Thrift 是 Facebook 实现的一种高效的.支持多种编程语言的远程服务调用的框架.本文将从 Python开发人员角度简单介绍 Apache Thrift 的架构.开发和使 ...
- Python3多线程之间的执行顺序问题
[本文出自天外归云的博客园] 一个多线程的题:定义三个线程ID分别为ABC,每个线程打印10遍自己的线程ID,按ABCABC……的顺序进行打印输出. 我的解法: from threading impo ...
- iOS开发支付宝支付
iOS支付宝支付(Alipay)详细接入流程以及项目中遇到的问题分析 浏览: 149 发布日期: 2016-10-19 分类: ios 最近在项目中接入了微信支付和支付宝支付,总的来说没有那么 ...
- 施工测量中Cad一些非常有用的插件
经常会遇到坐标在cad中批量展点.从cad中批量保存坐标点.导入cad中的坐标怎么才能有点号,怎么快速标注cad里的坐标点··· ··· 这一切都是可以程序化的,cad是可以二次开发的,我经常用易语言 ...
- 30. Substring with Concatenation of All Words
题目: You are given a string, s, and a list of words, words, that are all of the same length. Find all ...
- Hadoop2.6新增用户隔离
1.hadoop文件权限介绍 (这部分内容参考成品 https://blog.csdn.net/skywalker_only/article/details/40709447) 之前在论坛看到一个关 ...
- Git常见报错及解决方案
报错一: You have not concluded your merge (MERGE_HEAD exists). Please, commit your changes before you c ...
- AndroidStudio 代码(导入类)报错但可正常运行,以及解决此问题后带来的系列问题解决
首先是应用中很多导入的类都报红色异常显示找不到此类,但运行编译正常: 第一种方法: 点击AndroidStudio菜单File -> Invalidate Caches/Restar… ,在弹出 ...
- Git错误:error: The following untracked working tree files would be overwritten by merge:
[andy@localhost weixin_robot]$ git pull Updating d652d1c..fa05549 error: The following untracked wor ...
- iOS - 切换rootViewController时,销毁之前的控制器
一.iOS在切换根控制器时,如何销毁之前的控制器?(切换rootViewController时注意的内存泄漏) 首先.在iOS的ARC机制下,任何对象,当没有其他对象对他进行强引用时,都会被自动释放. ...