Linux 裝B之作酷炫小工具

原創作品,允許轉載,轉載時請務必以超鏈接形式標明文章 原始出處 、作者信息和本聲明。否則將追究法律責任。http://caochun.blog.51cto.com/4497308/1707502
http://www.tecmint.com/20-funny-commands-of-linux-or-linux-is-fun-in-terminal/
http://www.wtt2345.com/kj/20151227/145423.html
https://linux.cn/article-1212-1.html
http://hustyx.com/ubuntu/75/
http://blog.fantasy.codes/shell/2013/12/03/interesting-command/
20 Funny Commands of Linux or Linux is Fun in Terminal

Linux is fun! Huhhh. OK so you don’t believe me. Mind me at the end of this article you will have to believe that Linux is actually a fun box.
650) this.width=650;" class="size-full wp-image-3023" src="http://www.tecmint.com/wp-content/uploads/2013/05/Linux-Funny-Commands.png" alt="Linux Funny Commands" height="321" width="435" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none;">
20 Linux Funny Commands

  1. Command: sl (Steam Locomotive)
    You might be aware of command ‘ls‘ the list command and use it frequently to view the contents of a folder but because of miss-typing sometimes you would result in ‘sl‘, how about getting a little fun in terminal and not “command not found“.
    Install sl
    root@tecmint:~# apt-get install sl (In Debian like OS)root@tecmint:~# yum -y install sl (In Red Hat like OS)
    Output
    root@tecmint:~# sl
    650) this.width=650;" class="size-full wp-image-3010" src="http://www.tecmint.com/wp-content/uploads/2013/05/sl.png" alt="sl funny command" height="387" width="620" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none;">
    sl command
    This command works even when you type ‘LS‘ and not ‘ls‘.
    惡作劇制作:
    alias ls=sl
  2. Command: telnet
    No! No!! it is not as much complex as it seems. You would be familiar with telnet. Telnet is a text-oriented bidirectional network protocol over network. Here is nothing to be installed. What you should have is a Linux box and a working Internet.
    root@tecmint:~# telnet towel.blinkenlights.nl
    650) this.width=650;" class="size-full wp-image-3011" src="http://www.tecmint.com/wp-content/uploads/2013/05/telnet.png" alt="telnet command" height="387" width="620" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none;">
    telnet command
  3. Command: fortune

what about getting your random fortune, sometimes funny in terminal.
Install fortune
root@tecmint:~# apt-get install fortune (for aptitude based system)root@tecmint:~# yum install fortune (for yum based system)
root@tecmint:~# fortuneYou'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.

  1. Command: rev (Reverse)
    It reverse every string given to it, is not it funny.
    root@tecmint:~# rev123abc cba321 xuniL eb ot nrobborn to be Linux
  2. Command: factor
    Time for some Mathematics, this command output all the possible factors of a given number.
    root@tecmint:~# factor5 5: 5 12 12: 2 2 3 1001 1001: 7 11 13 5442134 5442134: 2 2721067
  3. Command: script
    OK fine this is not a command and a script but it is nice.
    root@tecmint:~# 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
  4. Command: Cowsay
    An ASCII cow in terminal that will say what ever you want.
    Install Cowsay
    root@tecmint:~# apt-get install cowsay (for Debian based OS)root@tecmint:~# yum install cowsay (for Red Hat based OS)
    Output
    root@tecmint:~# cowsay I Love nix ____________< I Love nix > ------------ \ __ \ (oo)_______ ()\ )/\ ||----w | || ||
    How about pipelineing ‘fortune command‘, described above with 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 | || ||
    Note: ‘|‘ is called pipeline instruction and it is used where the output of one command needs to be the input of another command. In the above example the output of ‘fortune‘ command acts as an input of ‘cowsay‘ command. This pipeline instruction is frequently used in scripting and programming.
    xcowsay is a graphical program which response similar to cowsay but in a graphical manner, hence it is X of cowsay.
    apt-get install xcowsayyum install xcowsay
    Output
    root@tecmint:~# xcowsay I Love nix
    650) this.width=650;" class="size-full wp-image-3012" src="http://www.tecmint.com/wp-content/uploads/2013/05/xcowsay.png" alt="install xcowsay" height="387" width="620" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none;">
    xcowsay command
    cowthink is another command just run “cowthink Linux is sooo funny” and see the difference in output of cowsay and cowthink.
    apt-get insatll cowthinkyum install cowthink
    Output
    root@tecmint:~# cowthink ....Linux is sooo funny _________________________( ....Linux is sooo funny ) ------------------------- o ^
    ^ o (oo)_______ (__)\ )/\ ||----w | || ||
  5. Command: yes
    It is funny but useful as well, specially in scripts and for System Administrators where an automated predefined response can be passed to terminal or generated.
    root@tecmint:~# yes I Love LinuxI Love LinuxI Love LinuxI Love LinuxI Love LinuxI Love LinuxI Love LinuxI Love LinuxI Love LinuxI Love LinuxI Love LinuxI Love LinuxI Love Linux
    Note: (Till you interrupt i.e ctrl+c).
  6. Command: toilet
    what? Are u kidding, huhh no! Definitely not, but for sure this command name itself is too funny, and I don’t know from where this command gets it’s name.
    Install toilet
    root@tecmint:~# apt-get install toilet root@tecmint:~# yum install toilet
    Output
    root@tecmint:~# toilet tecmint mmmmmmm " m # mmm mmm mmmmm mmm m mm mm#mm mmm mmm mmmmm # #" # #" " # # # # #" # # #" " #" "# # # # # #"""" # # # # # # # # # # # # # # # "#mm" "#mm" # # # mm#mm # # "mm # "#mm" "#m#" # # #
    It even offers some kind of color and fonts style.
    root@tecmint:~# toilet -f mono12 -F metal Tecmint.com
    650) this.width=650;" class="size-full wp-image-3013" src="http://www.tecmint.com/wp-content/uploads/2013/05/toilet.png" alt="install toilet command" height="387" width="620" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none;">
    toilet command
    Note: Figlet is another command that more or less provide such kind of effect in terminal.
  7. Command: cmatrix
    You might have seen Hollywood movie ‘matrix‘ and would be fascinated with power, Neo was provided with, to see anything and everything in matrix or you might think of an animation that looks alike Hacker‘s desktop.
    Install cmatrix
    root@tecmint:~# apt-get install cmatrixroot@tecmint:~# yum install cmatrix
    Output
    root@tecmint:~# cmatrix
    650) this.width=650;" class="size-full wp-image-3014" src="http://www.tecmint.com/wp-content/uploads/2013/05/cmatrix.png" alt="cmatrix command" height="387" width="620" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none;">
    cmatrix command
  8. Command: oneko
    OK so you believe that mouse pointer of Linux is the same silly black/white pointer where no animation lies then I fear you could be wrong. “oneko“ is a package that will attach a “Jerry“ with you mouse pointer and moves along with you pointer.
    Install cmatrix
    root@tecmint:~# apt-get install onekoroot@tecmint:~# yum install oneko
    Output
    root@tecmint:~# oneko
    650) this.width=650;" class="size-full wp-image-3015" src="http://www.tecmint.com/wp-content/uploads/2013/05/oneko.png" alt="install oneko" height="387" width="620" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none;">
    oneko command
    Note: Once you close the terminal from which oneko was run, jerry will disappear, nor will start at start-up. You can add the application to start up and continue enjoying.
  9. Fork Bomb
    This is a very nasty piece of code. Run this at your own risk. This actually is a fork bomb which exponentially multiplies itself till all the system resource is utilized and the system hangs. (To check the power of above code you should try it once, but all at your own risk, close and save all other programs and file before running fork bomb).
    root@tecmint:~# :(){ :|:& }:
  10. Command: while
    The below “while” command is a script which provides you with colored date and file till you interrupt (ctrl + c). Just copy and paste the below code in terminal.
    root@tecmint:~# while true; do echo "$(date '+%D %T' | toilet -f term -F border --gay)"; sleep 1; done
    650) this.width=650;" class="size-full wp-image-3016" src="http://www.tecmint.com/wp-content/uploads/2013/05/while.png" alt="Linux while command" height="387" width="620" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none;">
    Linux while command
    Note: The above script when modified with following command, will gives similar output but with a little difference, check it in your terminal.
    root@tecmint:~# while true; do clear; echo "$(date '+%D %T' | toilet -f term -F border --gay)"; sleep 1; done
  11. Command: espeak
    Just Turn the Knob of your multimedia speaker to full before pasting this command in your terminal and let us know how you felt listening the god’s voice.
    Install espeak
    root@tecmint:~# apt-get install espeakroot@tecmint:~# yum install espeak
    Output
    root@tecmint:~# espeak "Tecmint is a very good website dedicated to Foss Community"
  12. Command: aafire
    How about fire in your terminal. Just type “aafire” in the terminal, without quotes and see the magic. Press any key to interrupt the program.
    Install aafire
    root@tecmint:~# apt-get install libaa-bin
    Output
    root@tecmint:~# aafire
    650) this.width=650;" class="size-full wp-image-3017" src="http://www.tecmint.com/wp-content/uploads/2013/05/aafire.png" alt="install aafire" height="387" width="620" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none;">
    aafire command
  13. Command: bb
    First install “apt-get insatll bb” and then, type “bb” in terminal and see what happens.
    root@tecmint:~# bb
    650) this.width=650;" class="size-full wp-image-3018" src="http://www.tecmint.com/wp-content/uploads/2013/05/bb.png" alt="bb command" height="387" width="620" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none;">
    bb command
  14. Command: url
    Won’t it be an awesome feeling for you if you can update you twitter status from command line in front of your friend and they seems impressed. OK just replace username, password and your status message with your’s username, password and “your status message“.
    root@tecmint:~# url -u YourUsername:YourPassword -d status="Your status message" http://twitter.com/statuses/update.xml
  15. ASCIIquarium
    How it will be to get an aquarium in terminal.
    root@tecmint:~# apt-get install libcurses-perlroot@tecmint:~# cd /tmp root@tecmint:~# wget http://search.cpan.org/CPAN/authors/id/K/KB/KBAUCOM/Term-Animation-2.4.tar.gzroot@tecmint:~# tar -zxvf Term-Animation-2.4.tar.gzroot@tecmint:~# cd Term-Animation-2.4/root@tecmint:~# perl Makefile.PL && make && make testroot@tecmint:~# make install
    Install ASCIIquarium
    Now Download and Install ASCIIquarium.
    root@tecmint:~# cd /tmproot@tecmint:~# wget http://www.robobunny.com/projects/asciiquarium/asciiquarium.tar.gzroot@tecmint:~# tar -zxvf asciiquarium.tar.gzroot@tecmint:~# cd asciiquarium_1.1/root@tecmint:~# cp asciiquarium /usr/local/binroot@tecmint:~# chmod 0755 /usr/local/bin/asciiquarium
    And finally run “asciiquarium” or “/usr/local/bin/asciiquarium“ in terminal without quotes and be a part of magic that will be taking place in front of your eyes.
    root@tecmint:~# asciiquarium
    650) this.width=650;" class="size-full wp-image-3019" src="http://www.tecmint.com/wp-content/uploads/2013/05/ascliquarium.png" alt="install aquarium" height="387" width="620" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none;">
    aquarium command
  16. Command: funny manpages
    First install “apt-get install funny-manpages” and then run man pages for the commands below. Some of them may be 18+, run at your own risk, they all are too funny.
    babycelibacycondomdateechoflamefloggonggrope, egrope, fgrope party rescrog rmrtfmtmuubpwoman (undocumented)xkill xlart sex strfry
    root@tecmint:~# man baby
  17. Linux Tweaks
    It is time for you to have some one liner tweaks.
    root@tecmint:~# worldbash: world: not found
    root@tecmint:~# touch girls\ boo** touch: cannot touch girls boo**': Permission denied root@tecmint:~# nice man womanNo 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 targetlove'. 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 is sexy: who | grep -i blonde | date; cd ~; unzip; touch; strip; finger; mount; gasp; yes; uptime; umount; sleep (If you know what i mean)
    There are certain other but these don’t work on all the system and hence not included in this article. Some of them are man dog , filter, banner, etc.
    Have fun, you can say me thanks later :) yup your comment is highly appreciated which encourages us write more. Tell us which command you liked the most. Stay tuned i will be back soon with another article worth reading.

Star Wars (telnet)

telnet是基于Telnet協議的遠程登錄客戶端程序,經常用來遠程登錄服務器.但現在我們要用它來觀看星球大戰:
telnet towel.blinkenlights.nl

  1. this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSSfcDwOicR0BoRWE4FToBMtMwsjoLp1je1seWPAqgoRHhHeF8LW7wyicoQ/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" class="origin_image zh-lightbox-thumb lazy" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" width="690" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none; width: auto; height: auto;">
  1. sl我們經常用ls來列出當前目錄下的所有文件,ls反過來也是一個有趣的命令,會出現一個移動的小火車.如果輸入后提示"沒有該命令",那就需要安裝它。
    apt-get install sl (In Debian like OS)yum -y install sl (In Red Hat like OS)
    sl
  1. this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSSYYiaEq1iczlkFOuibicKTuJZbdDLujXfPx5f8yVF4S5t2MnX5Mia8VImC8g/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" class="origin_image zh-lightbox-thumb lazy" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" width="1009" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none; width: auto; height: auto;">
    還可以給別人搞惡作劇:
    alias ls=sl
    這樣別人使用 ls 列出目錄和文件的時候,卻出現一個小火車,那滋味一定很酸爽哈哈哈哈!
  1. fortune這個命令會隨機輸出有趣的話,比如名言或笑話.同樣需要先安裝.
    apt-get install fortune (for aptitude based system)yum install fortune (for yum based system)
    jh@linux:~$ fortuneThere is no distinctly native American criminal class except Congress. -- Mark Twain
    還有 fortune-zh , 輸出的是中文內容,可能是一些詩詞,也可能是一些有趣的句子。
  2. Cowsay這是一只可以說話的 ASCII Cow。
  1. this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSStQ7aic32NShR1SodNzSxeBQblhOSTZkfAkKNqkVPkRw8UuwJ52PcBEA/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" class="content_image lazy" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" width="362" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none; width: auto; height: auto;">
    還可以把 cowsay 和 fortune 結合到一起使用:
  2. this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSSjNfdsEL2vxPz7vJ3NfcLn2Iib4DrRrp0Y5Gfk8LQtkbuGBPYKTwWBOg/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" class="origin_image zh-lightbox-thumb lazy" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" width="561" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none; width: auto; height: auto;">
    jh@linux:~$ fortune -s | cowsay -f duck ___________________________________/ 《閨怨》 作者王昌齡 \ 閨中少婦不知愁春日凝妝上翠樓。 忽見陌頭楊柳色悔教夫婿覓封侯。 / ----------------------------------- \ \ \ >()_ () _
    這只cow不僅會說話,還會思考,不信你看:
    jh@linux:~$ cowthink I am thinking! ________________( I am thinking! ) ---------------- o __ o (oo)_______ ()\ )/\ ||----w | || ||
    還可通過cowsay -l 查看其它動物的名字然后-f跟上動物名如
    jh@linux:~$ cowsay -f ghostbusters Who you Gonna Call ____________________< Who you Gonna Call > -------------------- \ \ \ --- - /--______ --( / \ )XXXXXXXXXXX\v. .-XXX( O O )XXXXXXXXXXXXXXX- /XXX( U ) XXXXXXX\ /XXXXX( )-- XXXXXXXXXXX\ /XXXXX/ ( O ) XXXXXX \XXXXX\ XXXXX/ / XXXXXX _ \XXXXX XXXXXX
    / XXXXXX _
    ----> ---___ XXX__/ XXXXXX __ / - --__/ /\ XXXXXX / --/= -\ / XXXXXX '--- XXXXXX -/XXX\ XXXXXX /XXXXX \XXXXXXXXX \ /XXXXX/ \XXXXXX > /XXXXX/ \XXXXX--/ -- XXXX/ -XXXXXXXX--------------- XXXXXX- \XXXXXXXXXXXXXXXXXXXXXXXXXX/ ""VXXXXXXXXXXXXXXXXXXV""
    還可以這樣玩,每次圖形和文字都不一樣:
    jh@linux:~$ cowsay -f "$(ls /usr/share/cowsay/cows | sort -R | head -1)" "$(fortune -s)" _______________________________________/ Q: What's the difference betweeen USL | and the Graf Zeppelin? A: The Graf || Zeppelin represented cutting edge |\ technology for its time. / --------------------------------------- \ / \ //\ \ |_
    /| / // \ /0 0 _
    / // | \ \ / / /
    / // | \ \ @
    ^
    @'/ /
    // | \ \ //
    ^
    / /
    // | \ \ ( //) | /// | \ \ ( / /) | / ) // | \ \ ( // /) '/, _ / ( ; -. | _ .-~ .-~~~^-. (( / / )) ,-{ _ -.|.-~-. .~. (( // / )) '/\ / ~-. _ .-~ .-~^-. \ (( /// )) . { } / \ \ (( / )) .----~-.\ \-' .~ \. ^-. ///.----..> \ _ -~ . ^- ^- ///-. _ _ _ _ _ _}^ - - - - ~ ~-- ,.-~ /.-jh@linux:$ cowsay -f "$(ls /usr/share/cowsay/cows | sort -R | head -1)" "$(fortune -s)" _____________________________________/ You will be awarded the Nobel Peace \ Prize... posthumously. / ------------------------------------- \ \ \ _ \ \ \ \/\ \ _\/ \ / -\ \ / oo -\ \ / \ | ---\ -\ --/ \ \ | -\ \ -\ -------------\ /-\ \ -------/ ---/ \ \ |\ \ | / | | \ | \ | | / \ | | / \ | \ \ | - /--------\ | o + +--------- \ | | | | \ | | \ | | | | \ | | \ | \ | | | | | \ \ | | | | +--+ ---+
  1. xcowsay如果你覺得 ASCII Cow 太單調了,這里還有一頭圖形化的Cow.650) this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSSpkwu67Un1ZLn9yTGIowCBRnibRmHG7JFs5fB82y7iakWLa8kSV7RY4aA/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" class="origin_image zh-lightbox-thumb lazy" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" width="584" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 6px 0px; vertical-align: top; border: 0px none; width: 584px; height: auto;">5.cmatrix這是屏保,沒錯,就是屏保!從上往下輸出無盡的字符串,類似<<黑客帝國>>中的矩陣效果。
    650) this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSSacxVMw6riaAVdmvZFoMPwwoLxJ5o0X0YgYtDPc2EOaHgakXDeicDpA0Q/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none; width: auto; height: auto;">
  1. this.width=650;" src="http://mp.weixin.qq.com/mpres/htmledition/ueditor/themes/default/images/spacer.gif?wx_lazy=1" alt="spacer.gif?wx_lazy=1" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: 1px solid rgb(221, 221, 221); background-image: url("http://mmbiz.qpic.cn/mmbiz/EXnBENchcxiaFl3ibtGAkNleAaSufPEjicsB8vUbwIX08libibOHV0xlGIXw0HM6oibIBpV6twceDctiaiaRt56tb8lYLg/0?wx_fmt=png"); width: auto; background-position: 50% 50%; height: auto;">5.yesyes命令會一直重復輸出字符串,用Ctrl+c終止.
    jh@linux:~$ yes hello,worldhello,worldhello,worldhello,worldhello,worldhello,worldhello,worldhello,world

6.toilet輸出由ASCII碼組成的藝術字。

  1. this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSSjxaEtl4Sy7eEFhZZByIJQjdFm2D9sLqD3WEYT3iaaLpoxqV5QicVy1Bg/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" class="origin_image zh-lightbox-thumb lazy" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" width="718" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none; width: auto; height: auto;">
    如果覺得白色不好看,還可以通過參數設置字體和顏色.******650) this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSSYD0uiarcq7NAA0icLsmwVCbuRmS9vnFyxJ14dhHccCdjpB900HibDjWdA/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" class="origin_image zh-lightbox-thumb lazy" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" width="584" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 6px 0px; vertical-align: top; border: 0px none; width: 584px; height: auto;">**7. figlet另一款在終端將字符進行圖形化輸出的軟件。
    jh@linux:~$ figlet linux _ _ | () __ _ ___ | | | ' | | | \ / /| | | | | | || |> < |||| ||_,//_\jh@linux:~$ figlet linux -f script _ | | o | | _ _ |/ | / |/ | | | // |/|/ | |/ _/|/ /_/ jh@linux:~$ figlet linux -f bubble _ _ _ _ _ / \ / \ / \ / \ / \ ( l | i | n | u | x ) _/ _/ _/ _/ _/ jh@linux:~$ figlet linux -f shadow |) | | __ \ | |\ \ / | | | | | | ` < ||| |_,_| _/_\ jh@linux:~$ figlet linux -f lean _/ _/ / /// _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ // _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ / /// _/ _/
  1. oneko輸入命令后會屏幕上會出現一直喵星人,鼠標移到哪它就跟到哪,鼠標不動的時候它就睡覺哈哈.650) this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSSjIw7Wzc4nIYPRtYUEhlHHxBQQGB6icxQs2FH4JhyL4FcuQDCVM9Ijhw/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" class="origin_image zh-lightbox-thumb lazy" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" width="584" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 6px 0px; vertical-align: top; border: 0px none; width: 584px; height: auto;">9. xeyes輸入它,屏幕上會出現一雙眼睛,一直盯著你看,你的鼠標移到哪,它就盯到哪.650) this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSSxRGvgW8COjhfslUicTvuCWLWauz6Sf2jfKvH7blqXuGOcLSmXSPkSibw/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" class="origin_image zh-lightbox-thumb lazy" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" width="471" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 6px 0px; vertical-align: top; border: 0px none; width: 471px; height: auto;">10. cal打印日歷。650) this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSSG9VRYuMkK1bQ46aWWljDwaotNY6ttds8qmNDE8hPMWzlIEwxMwURPg/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" class="content_image lazy" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" width="275" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 6px 0px; vertical-align: top; border: 0px none; width: 275px; height: auto;">11. factor求一個數的所有因素。
    jh@linux:~$ factor1212: 2 2 39998347823 9998347823: 193 2207 2347332412343241234: 2 1620617
    **12. espeak **該命令可以閱讀所輸入的英語字符.
    espeak 'hell, world'
  2. aafire該命令會輸出由ASCII碼組成的火焰狀的字符,讓屏幕燃燒起來。

apt-get install libaa-binaafire
650) this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSSfVC6dH0KpqshUzvPG8RWwOSf5MITiakCfa604E2FYN0RCicRDxG8jQ0w/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" class="origin_image zh-lightbox-thumb lazy" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" width="584" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 6px 0px; vertical-align: top; border: 0px none; width: 584px; height: auto;">
14.bb一款不一樣的音樂播放器
sudo apg-get install bbbb
650) this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSSMlqVE8TkZIOfaHk53hRliaPaQ6hXHuDKj5JvhhJtQmTevf1FwHnjg5g/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none; width: auto; height: auto;">
15.rev 字符串翻轉。
jh@linux:~$ revwhat ?? tahwthis is coollooc si siht

16.pi輸出pi后面任意長度小數位數。
jh@linux:~$ pi 503.1415926535897932384626433832795028841971693993751

17.rig生成隨機的正真的假冒的身份地址。
jh@linux:~$ rigKristin Schwartz243 Fairfield RdMentor, OH 44060(216) xxx-xxxx

  1. 乘法口訣表
    jh@linux:~$ for i in {1..9}; do for j in $(seq 1 $i); do echo -ne $i×$j=$((ij))\t;done; echo;done1×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
    jh@linux:~$ 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

  2. lolcat 讓字符變成彩色的.

  1. this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSSn0fYyjabvnAzSMJwLoHuVdj538C2by3BliaPokJxO2Wey87FxxqgwAA/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" class="origin_image zh-lightbox-thumb lazy" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" width="671" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none; width: auto; height: auto;">
    20.screenfetch經 @谷月軒 提醒,添加了screenfetch.它可以在終端上生成漂亮的文本系統信息和ASCII藝術的發行版LOGO.安裝使用步驟如下:

使用命令克隆screenFectch庫:git clone git://github.com/KittyKatt/screenFetch.git screenfetch#復制文件到/usr/bin/目錄并設置執行權限:cp screenfetch/screenfetch-dev /usr/bin/screenfetchchmod +x /usr/bin/screenfetch#運行screenFectch:screenfetch

  1. this.width=650;" src="http://mmbiz.qpic.cn/mmbiz/MOwlO0INfQrfZln4Pg14Y4FBfS9WNpSSBBYOuKLy8TgEXz2oWVr0xIxgPREgcjR7wk6qvNqDZnxTYicrVf0joNg/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" class="origin_image zh-lightbox-thumb lazy" alt="640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1" width="1148" onabort="" onblur="" onchange="" onclick="" ondblclick="" onerror="" onfocus="" onkeydown="" onkeypress="" onkeyup="" onmousedown="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" onreset="" onresize="" onselect="" onsubmit="" onunload="" style="padding: 0px; margin: 0px; vertical-align: top; border: none; width: auto; height: auto;">

然后再補充一點實用的.那必然是 Vim 啊!首先是vim插件,推薦使用 spf13/spf13-vim · GitHub 適合沒時間折騰的懶人.然后是瀏覽器的vim插件,firefox的Vimperator , chrome的Vimium ,徹底解放鼠標。

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 228,983評論 6 537
  • 序言:濱河連續發生了三起死亡事件,死亡現場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機,發現死者居然都...
    沈念sama閱讀 98,772評論 3 422
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
    開封第一講書人閱讀 176,947評論 0 381
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經常有香客問我,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 63,201評論 1 315
  • 正文 為了忘掉前任,我火速辦了婚禮,結果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當我...
    茶點故事閱讀 71,960評論 6 410
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發上,一...
    開封第一講書人閱讀 55,350評論 1 324
  • 那天,我揣著相機與錄音,去河邊找鬼。 笑死,一個胖子當著我的面吹牛,可吹牛的內容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 43,406評論 3 444
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 42,549評論 0 289
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后,有當地人在樹林里發現了一具尸體,經...
    沈念sama閱讀 49,104評論 1 335
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 40,914評論 3 356
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發現自己被綠了。 大學時的朋友給我發了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 43,089評論 1 371
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 38,647評論 5 362
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響,放射性物質發生泄漏。R本人自食惡果不足惜,卻給世界環境...
    茶點故事閱讀 44,340評論 3 347
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 34,753評論 0 28
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至,卻和暖如春,著一層夾襖步出監牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 36,007評論 1 289
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 51,834評論 3 395
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 48,106評論 2 375

推薦閱讀更多精彩內容