20个Linux命令及Linux终端的趣事

20个Linux命令及Linux终端的趣事

1. 命令:sl (蒸汽机车)
你可能了解 ‘ls’ 命令,并经常使用它来查看文件夹的内容。但是,有些时候你可能会拼写成 ‘sl’ ,这时我们应该如何获得一些乐趣而不是看见“command not found”呢?

安装 sl

    root@tecmint:~# apt-get install sl      (In Debian like OS) 
    root@tecmint:~# yum -y install sl       (In Red Hat like OS) 

输出

    root@tecmint:~# sl 

sl command

当你敲入的是‘LS‘而不是’ls‘时,这个命令也会运行。

2. 命令:telnet

非也!非也!!这可不像它平常那样复杂。你可能很熟悉telnet。Telnet 是一个文本化的双向网络协议。这里不需要安装什么东西。你需要的就是一个Linux系统和一个连通的网络。

    root@tecmint:~# telnet towel.blinkenlights.nl 

telnet command

3. 命令:fortune

试试你未知的运气,终端里有时也有好玩的。

安装 fortune

    root@tecmint:~# apt-get install fortune     (for aptitude based system) 
    root@tecmint:~# yum install fortune         (for yum based system) 
    root@tecmint:~# 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(翻转)

它会把传递给它的的每个字符串都反过来,是不是很好玩。

    root@tecmint:~# rev 
    123abc  
    cba321  
    xuniL eb ot nrob 
    born to be Linux 

5. 命令:factor

该谈点儿关于Mathematics的了,这个命令输出给定数字的所有因子。

    root@tecmint:~# factor 
    5  
    5: 5  
    12  
    12: 2 2 3  
    1001  
    1001: 7 11 13  
    5442134  
    5442134: 2 2721067 

6.命令:script

好的,这不是什么命令,而是一个脚本,一个很有趣的脚本。

    root@tecmint:~# for i in {1..12}; do for j in $(seq 1 $i); do echo -ne $i x $j=$((i*j))\t;done; echo;done  
    1 x 11=1  
    2 x 1=2 2 x 2=4  
    3 x 1=3 3 x 2=6 3 x 3=9  
    4 x 1=4 4 x 2=8 4 x 3=12    4 x 4=16     
    5 x 1=5 5 x 2=10    5 x 3=15    5 x 4=20    5 x 5=25     
    6 x 1=6 6 x 2=12    6 x 3=18    6 x 4=24    6 x 5=30    6 x 6=36     
    7 x 1=7 7 x 2=14    7 x 3=21    7 x 4=28    7 x 5=35    7 x 6=42    7 x 7=49     
    8 x 1=8 8 x 2=16    8 x 3=24    8 x 4=32    8 x 5=40    8 x 6=48    8 x 7=56    8 x 8=64     
    9 x 1=9 9 x 2=18    9 x 3=27    9 x 4=36    9 x 5=45    9 x 6=54    9 x 7=63    9 x 8=72    9 x 9=81     
    10 x 1=10   10 x 2=20   10 x 3=30   10 x 4=40   10 x 5=50   10 x 6=60   10 x 7=70   10 x 8=80   10 x 9=90   10 x 10=100  
    11 x 1=11   11 x 2=22   11 x 3=33   11 x 4=44   11 x 5=55   11 x 6=66   11 x 7=77   11 x 8=88   11 x 9=99   11 x 10=110 11 x 11=121  
    12 x 1=12   12 x 2=24   12 x 3=36   12 x 4=48   12 x 5=60   12 x 6=72   12 x 7=84   12 x 8=96   12 x 9=108  12 x 10=120 12 x 11=132 12 x 12=144 

7.命令:Cowsay

一个在终端用ASCII码组成的小牛,这个小牛会说出你想要它说的话。

安装Cowsay

    root@tecmint:~# apt-get install cowsay      (for Debian based OS) 
    root@tecmint:~# yum install cowsay      (for Red Hat based OS) 

输出

    root@tecmint:~# cowsay I Love nix  
     ____________ 
    < I Love nix > 
     ------------ 
               ^__^ 
               (oo)\_______ 
                (__)       )/ 
                    ||----w | 
                    ||     || 

如果用管道将‘fortune command’命令重定向到cowsay会怎样呢?

    root@tecmint:~# 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 | 
                    ||     || 

提示:‘|’是管道命令符。通常它是将一个命令的输出作为下一个命令的输入。在上面的例子中‘fortune’的输出作为‘cowsay’命令的输出。管道命令会经常用在脚本和程序编写中。

xcowsay是一个图形界面程序。它与cowsay类似只是以一种图形的方式来表达,可以说是X版本的cowsay。

    apt-get insatll xcowsay 
    yum install xcowsay 

输出

    root@tecmint:~# xcowsay I Love nix 

xcowsay command

cowthink是另一个命令。运行“cowthink Linux is sooo funny ”看看它与cowsay的不同吧。

    apt-get insatll cowthink 
    yum install cowthink 

输出

    root@tecmint:~# cowthink ....Linux is sooo funny 
     _________________________ 
    ( ....Linux is sooo funny ) 
     ------------------------- 
            o   ^__^ 
             o  (oo)\_______ 
                (__)       )/ 
                    ||----w | 
                    ||     || 

8. 命令:yes

yes 是一个非常有趣又有用的命令,尤其对于脚本编写和系统管理员来说,它可以自动地生成预先定义的响应或者将其传到终端。

    root@tecmint:~# 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. 命令: toilet

什么?你在开玩笑吗! 当然没有,但肯定的是这个命令的名字太搞了,我也不知道这个命令的名字从何而来。

安装toilet

    root@tecmint:~# apt-get install toilet  
    root@tecmint:~# yum install toilet 

输出

    root@tecmint:~# toilet tecmint  
    mmmmmmm                        "             m                                
       #     mmm    mmm   mmmmm  mmm    m mm   mm#mm          mmm    mmm   mmmmm  
       #    #"  #  #"  "  # # #    #    #"  #    #           #"  "  #" "#  # # #  
       #    #""""  #      # # #    #    #   #    #           #      #   #  # # #  
       #    "#mm"  "#mm"  # # #  mm#mm  #   #    "mm    #    "#mm"  "#m#"  # # # 

这个命令甚至提供了一些颜色和字体格式。

    root@tecmint:~# toilet -f mono12 -F metal Tecmint.com 

toilet command

提示:Figlet 是另外一个与toilet产生的效果类似的命令。

10. 命令:cmatrix

你可能看多好莱坞的电影‘黑客帝国’并陶醉于被赋予Neo的能看到在矩阵中任何事物的能力,或者你会想到一幅类似于‘Hacker’的桌面的生动画面。

安装 cmatrix

    root@tecmint:~# apt-get install cmatrix 
    root@tecmint:~# yum install cmatrix 

输出

    root@tecmint:~# cmatrix 

cmatrix command

11. 命令: oneko

可能你坚信Linux的鼠标指针永远是同样的黑色或白色一点儿也不生动,那你就错了。“oneko”是一个会让一个“Jerry”你的鼠标指针附着到你鼠标上的一个软件包。

安装 oneko

    root@tecmint:~# apt-get install oneko  
    root@tecmint:~# yum install oneko  

输出

    root@tecmint:~# oneko  

oneko command

提示:关闭运行着oneko的终端时,Jerry也会随之消失,重新启动终端时也不会再出项。你可以将这个程序添加到启动选项中然后继续使用它。

12. Fork炸弹

这是一段非常欠抽的代码。运行这个命令的后果自己负责。这个命令其实是一个fork炸弹,它会以指数级的自乘,直到所有的系统资源都被利用了或者系统挂起(想要见识这个命令的威力你可以试一次这个命令,但是后果自负,记得在运行它之前关掉并保存其它所有程序和文件)。

    root@tecmint:~# :(){ :|:& }:  

13. 命令:while

下面的”while“命令是一个脚本,这个脚本可以为你提供彩色的日期和文件直到你按下中断键(ctrl+c)。复制粘贴这个命令到你的终端。

    root@tecmint:~# while true; do echo "$(date '+%D %T' | toilet -f term -F border --gay)"; sleep 1; done  

Linux while command

提示:以上脚本通过下面的修改也会产生类似的输出但是还是有点不同的,在你的终端试试吧。

    root@tecmint:~# while true; do clear; echo "$(date '+%D %T' | toilet -f term -F border --gay)"; sleep 1; done  

14. 命令: espeak

将你的多媒体音箱的音量调到最大,然后在将这个命令复制到你的终端,来看看你听到上帝的声音时的反应吧。

安装 espeak

    root@tecmint:~# apt-get install espeak  
    root@tecmint:~# yum install espeak  

输出

    root@tecmint:~# espeak "Tecmint is a very good website dedicated to Foss Community"  

15. 命令: aafire

在你的终端放一把火如何。把这个“aafire”敲到你的终端,不需要什么引号看看这神奇的一幕吧。按下任意键中指该程序。

安装 aafire

    root@tecmint:~# apt-get install libaa-bin  

输出

    root@tecmint:~# aafire  

16. 命令: bb

首先安装“apt-get install bb”,然后敲入“bb”看看会发生什么吧。

    root@tecmint:~# bb  

bb command

17. 命令: url

如果在你的朋友面前用命令行来改变你的 twitter status 会不会很酷呢。用你的用户名密码和你想要的状态分别替换username, password 和“your status message“就可以了。

    root@tecmint:~# url -u YourUsername:YourPassword -d status="Your status message" http://twitter.com/statuses/update.xml  

18. ASCIIquarium

想要在终端弄一个水族馆该,怎么办?

    root@tecmint:~# apt-get install libcurses-perl  
    root@tecmint:~# cd /tmp   
    root@tecmint:~# wget http://search.cpan.org/CPAN/authors/id/K/KB/KBAUCOM/Term-Animation-2.4.tar.gz  
    root@tecmint:~# tar -zxvf Term-Animation-2.4.tar.gz  
    root@tecmint:~# cd Term-Animation-2.4/  
    root@tecmint:~# perl Makefile.PL &&  make &&   make test  
    root@tecmint:~# make install  

安装 ASCIIquarium

下载并安装ASCIIquarium。

    root@tecmint:~# cd /tmp  
    root@tecmint:~# wget http://www.robobunny.com/projects/asciiquarium/asciiquarium.tar.gz  
    root@tecmint:~# tar -zxvf asciiquarium.tar.gz  
    root@tecmint:~# cd asciiquarium_1.1/  
    root@tecmint:~# cp asciiquarium /usr/local/bin  
    root@tecmint:~# chmod 0755 /usr/local/bin/asciiquarium  

最后在终端运行“asciiquarium”或者“/usr/local/bin/asciiquarium”,记得不要加引号,神奇的一幕将在你眼前展现。

    root@tecmint:~# asciiquarium  

aquarium command

19. 命令: funny manpages

首先安装“apt-get install funny-manpages”然后运行下面命令的man手册。其中一些:

    baby  
    celibacy  
    condom  
    date  
    echo  
    flame  
    flog  
    gong  
    grope, egrope, fgrope   
    party   
    rescrog   
    rm  
    rtfm  
    tm  
    uubp  
    woman (undocumented)  
    xkill   
    xlart   
    sex   
    strfry  
       
    root@tecmint:~# man baby  

20. Linux Tweaks

该到了做一些优化的时候了。

    root@tecmint:~# world  
    bash: world: not found  
    root@tecmint:~# touch girls boo**   
    touch: cannot touch `girls boo**`: Permission denied  
    root@tecmint:~# nice man woman  
    No manual entry for woman  
    root@tecmint:~# ^How did the sex change operation go?^   
    bash: :s^How did the sex change operation go?^ : substitution failed  
    root@tecmint:~# %blow   
    bash: fg: %blow: no such job  
    root@tecmint:~# make love   
    make: *** No rule to make target `love`.  Stop.  
    $ [ whereis my brain?  
    sh: 2: [: 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  

Linux总是sexy:who | grep -i blonde | date; cd ~; unzip; touch; strip; finger; mount; gasp; yes; uptime; umount; sleep(如果你知道我的意思,汗!)

还有一些其它的命令,只是这些命令并不能在所有的系统上运行,所以本文没有涉及到。比如说dog , filter, banner

使用愉快,你可以稍后再对我说谢谢:)您的评价是我们前进的不竭动力。告诉我们你最喜欢的命令。继续关注,不久我会有另一篇值得阅读的文章。
11个让你吃惊的 Linux 终端命令

2015/05/15 · IT技术 · 980 阅读 · 1 评论 · Linux, shell, 终端命令
分享到:
34

    Android中的数据存储、组件与手势
    Android中的消息提示、菜单
    Android-深入Activity
    How-old 刷脸神器

原文出处: linux.about   译文出处:LCTT   欢迎分享原创到伯乐头条

我已经用了十年的Linux了,通过今天这篇文章我将向大家展示一系列的命令、工具和技巧,我希望一开始就有人告诉我这些,而不是曾在我成长道路上绊住我。

1. 命令行日常系快捷键
如下的快捷方式非常有用,能够极大的提升你的工作效率:

    CTRL + U – 剪切光标前的内容
    CTRL + K – 剪切光标至行末的内容
    CTRL + Y – 粘贴
    CTRL + E – 移动光标到行末
    CTRL + A – 移动光标到行首
    ALT + F – 跳向下一个空格
    ALT + B – 跳回上一个空格
    ALT + Backspace – 删除前一个单词
    CTRL + W – 剪切光标前一个单词
    Shift + Insert – 向终端内粘贴文本

那么为了让上述内容更易理解来看下面的这行命令。
1
    
sudo apt-get intall programname

如你所见,命令中存在拼写错误,为了正常执行需要把“intall”替换成“install”。

想象现在光标正在行末,我们有很多的方法将她退回单词install并替换它。

我可以按两次ALT+B这样光标就会在如下的位置(这里用指代光标的位置)。
1
    
sudo apt-get^intall programname

现在你可以按两下方向键并将“s”插入到install中去了。

如果你想将浏览器中的文本复制到终端,可以使用快捷键”shift + insert”。

2. SUDO !!
如果你还不知道这个命令,我觉得你应该好好感谢我,因为如果你不知道的话,那每次你在输入长串命令后看到“permission denied”后一定会痛苦不堪。

    sudo !!

如何使用sudo !!?很简单。试想你刚输入了如下命令:
1
    
apt-get install ranger

一定会出现“Permission denied”,除非你已经登录了足够高权限的账户。

sudo !! 就会用 sudo 的形式运行上一条命令。所以上一条命令就变成了这样:
1
    
sudo apt-get install ranger

如果你不知道什么是sudo,戳这里。

3. 暂停并在后台运行命令
我曾经写过一篇如何在终端后台运行命令的指南。

    CTRL + Z – 暂停应用程序
    fg – 重新将程序唤到前台

如何使用这个技巧呢?

试想你正用nano编辑一个文件:
1
    
sudo nano abc.txt

文件编辑到一半你意识到你需要马上在终端输入些命令,但是nano在前台运行让你不能输入。

你可能觉得唯一的方法就是保存文件,退出 nano,运行命令以后在重新打开nano。

其实你只要按CTRL + Z,前台的命令就会暂停,画面就切回到命令行了。然后你就能运行你想要运行命令,等命令运行完后在终端窗口输入“fg”就可以回到先前暂停的任务。

有一个尝试非常有趣就是用nano打开文件,输入一些东西然后暂停会话。再用nano打开另一个文件,输入一些什么后再暂停会话。如果你输入“fg”你将回到第二个用nano打开的文件。只有退出nano再输入“fg”,你才会回到第一个用nano打开的文件。

4. 使用nohup在登出SSH会话后仍运行命令
如果你用ssh登录别的机器时,nohup命令真的非常有用。

那么怎么使用nohup呢?

想象一下你使用ssh远程登录到另一台电脑上,你运行了一条非常耗时的命令然后退出了ssh会话,不过命令仍在执行。而nohup可以将这一场景变成现实。

举个例子,因为测试的需要,我用我的树莓派来下载发行版。我绝对不会给我的树莓派外接显示器、键盘或鼠标。

一般我总是用SSH从笔记本电脑连接到树莓派。如果我在不用nohup的情况下使用树莓派下载大型文件,那我就必须等待到下载完成后,才能登出ssh会话关掉笔记本。可如果是这样,那我为什么要使用树莓派下文件呢?

使用nohup的方法也很简单,只需如下例中在nohup后输入要执行的命令即可:
1
    
nohup wget http://mirror.is.co.za/mirrors/linuxmint.com/iso//stable/17.1/linuxmint-17.1-cinnamon-64bit.iso &

5. ‘在’特定的时间运行Linux命令
‘nohup’命令在你用SSH连接到服务器,并在上面保持执行SSH登出前任务的时候十分有用。

想一下如果你需要在特定的时间执行相同的命令,这种情况该怎么办呢?

命令‘at’就能妥善解决这一情况。以下是‘at’使用示例。
   
at 10:38 PM Fri
at> cowsay 'hello'
at> CTRL + D

上面的命令能在周五下午10时38分运行程序cowsay。

使用的语法就是‘at’后追加日期时间。当at>提示符出现后就可以输入你想在那个时间运行的命令了。

CTRL + D 返回终端。

还有许多日期和时间的格式,都需要你好好翻一翻‘at’的man手册来找到更多的使用方式。

6. Man手册
Man手册会为你列出命令和参数的使用大纲,教你如何使用她们。Man手册看起来沉闷呆板。(我思忖她们也不是被设计来娱乐我们的)。

不过这不代表你不能做些什么来使她们变得漂亮些。
1
    
export PAGER=most

你需要安装 ‘most’;她会使你的你的man手册的色彩更加绚丽。

你可以用以下命令给man手册设定指定的行长:
1
    
export MANWIDTH=80

最后,如果你有一个可用的浏览器,你可以使用-H在默认浏览器中打开任意的man页。
1
    
man -H <command>

注意啦,以上的命令只有在你将默认的浏览器设置到环境变量$BROWSER中了之后才效果哟。

7. 使用htop查看和管理进程
你用哪个命令找出电脑上正在运行的进程的呢?我敢打赌是‘ps’并在其后加不同的参数来得到你所想要的不同输出。

安装‘htop’吧!绝对让你相见恨晚。

htop在终端中将进程以列表的方式呈现,有点类似于Windows中的任务管理器。你可以使用功能键的组合来切换排列的方式和展示出来的项。你也可以在htop中直接杀死进程。

在终端中简单的输入htop即可运行。
1
    
htop

8. 使用ranger浏览文件系统
如果说htop是命令行进程控制的好帮手,那么ranger就是命令行浏览文件系统的好帮手。

你在用之前可能需要先安装,不过一旦安装了以后就可以在命令行输入以下命令启动她:
1
    
ranger

在命令行窗口中ranger和一些别的文件管理器很像,但是相比上下结构布局,她是左右结构的,这意味着你按左方向键你将前进到上一个文件夹,而右方向键则会切换到下一个。

在使用前ranger的man手册还是值得一读的,这样你就可以用快捷键操作ranger了。

9. 取消关机
无论是在命令行还是图形用户界面关机后,才发现自己不是真的想要关机。
1
    
shutdown -c

需要注意的是,如果关机已经开始则有可能来不及停止关机。

以下是另一个可以尝试命令:

    pkill shutdown

10. 杀死挂起进程的简单方法
想象一下,你正在运行的应用程序不明原因的僵死了。

你可以使用‘ps -ef’来找到该进程后杀掉或者使用‘htop’。

有一个更快、更容易的命令叫做xkill。

简单的在终端中输入以下命令并在窗口中点击你想杀死的应用程序。

    
xkill

那如果整个系统挂掉了怎么办呢?

按住键盘上的‘alt’和‘sysrq’不放,然后慢慢输入以下键:

    REISUB

这样不按电源键你的计算机也能重启了。

11. 下载Youtube视频
一般来说我们大多数人都喜欢看Youtube的视频,也会通过钟爱的播放器播放Youtube的流媒体。

如果你需要离线一段时间(比如:从苏格兰南部坐飞机到英格兰南部旅游的这段时间)那么你可能希望下载一些视频到存储设备中,到闲暇时观看。

你所要做的就是从包管理器中安装youtube-dl。

你可以用以下命令使用youtube-dl:
1
    
youtube-dl url-to-video

你可以在Youtubu视频页面点击分享链接得到视频的url。只要简单的复制链接在粘帖到命令行就行了(要用shift + insert快捷键哟)。
原文地址:https://www.cnblogs.com/timssd/p/4641889.html