{"id":13223,"date":"2019-04-01T08:28:26","date_gmt":"2019-04-01T08:28:26","guid":{"rendered":"http:\/\/www.appservgrid.com\/paw92\/?p=13223"},"modified":"2019-04-01T08:28:26","modified_gmt":"2019-04-01T08:28:26","slug":"20-funny-commands-of-linux-or-linux-is-fun-in-terminal","status":"publish","type":"post","link":"https:\/\/www.appservgrid.com\/paw92\/index.php\/2019\/04\/01\/20-funny-commands-of-linux-or-linux-is-fun-in-terminal\/","title":{"rendered":"20 Funny Commands of Linux or Linux is Fun in Terminal"},"content":{"rendered":"<p><strong>Linux<\/strong>\u00a0is fun!\u00a0<strong>Huhhh<\/strong>. OK so you don\u2019t believe me. Mind me at the end of this article you will have to believe that\u00a0<strong>Linux<\/strong>\u00a0is actually a fun box.<\/p>\n<div id=\"attachment_3023\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/20-funny-commands-of-linux-or-linux-is-fun-in-terminal\/linux-funny-commands\/\" rel=\"attachment wp-att-3023\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-3023\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2013\/05\/Linux-Funny-Commands.png\" alt=\"Linux Funny Commands\" width=\"435\" height=\"321\" aria-describedby=\"caption-attachment-3023\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-3023\" class=\"wp-caption-text\">20 Linux Funny Commands<\/p>\n<\/div>\n<h3>1. Command: sl (Steam Locomotive)<\/h3>\n<p>You might be aware of command \u2018<a href=\"https:\/\/www.tecmint.com\/15-basic-ls-command-examples-in-linux\/\" target=\"_blank\" rel=\"noopener\">ls<\/a>\u2018 the list command and use it frequently to view the contents of a folder but because of miss-typing sometimes you would result in \u2018<strong>sl<\/strong>\u2018, how about getting a little fun in terminal and not \u201c<strong>command not found<\/strong>\u201c.<\/p>\n<h4>Install sl<\/h4>\n<pre>root@tecmint:~# apt-get install sl \t\t(In <strong>Debian<\/strong> like OS)\r\nroot@tecmint:~# yum -y install sl \t\t(In <strong>Red Hat<\/strong> like OS)<\/pre>\n<h5>Output<\/h5>\n<pre>root@tecmint:~# sl<\/pre>\n<div id=\"attachment_3010\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/20-funny-commands-of-linux-or-linux-is-fun-in-terminal\/sl\/\" rel=\"attachment wp-att-3010\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-3010\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2013\/05\/sl.png\" alt=\"sl funny command\" width=\"620\" height=\"387\" aria-describedby=\"caption-attachment-3010\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-3010\" class=\"wp-caption-text\">sl command<\/p>\n<\/div>\n<p>This command works even when you type \u2018<strong>LS<\/strong>\u2018 and not \u2018<strong>ls<\/strong>\u2018.<\/p>\n<h3>2. Command: telnet<\/h3>\n<p><strong>No<\/strong>!\u00a0<strong>No<\/strong>!! it is not as much complex as it seems. You would be familiar with\u00a0<strong>telnet<\/strong>. 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.<\/p>\n<pre>root@tecmint:~# telnet towel.blinkenlights.nl<\/pre>\n<div id=\"attachment_3011\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/20-funny-commands-of-linux-or-linux-is-fun-in-terminal\/telnet\/\" rel=\"attachment wp-att-3011\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-3011\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2013\/05\/telnet.png\" alt=\"telnet command\" width=\"620\" height=\"387\" aria-describedby=\"caption-attachment-3011\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-3011\" class=\"wp-caption-text\">telnet command<\/p>\n<\/div>\n<h3>3. Command: fortune<\/h3>\n<p>what about getting your random\u00a0<strong>fortune<\/strong>, sometimes funny in terminal.<\/p>\n<h4>Install fortune<\/h4>\n<pre>root@tecmint:~# apt-get install fortune \t(for <strong>aptitude<\/strong> based system)\r\nroot@tecmint:~# yum install fortune \t\t(for <strong>yum<\/strong> based system)<\/pre>\n<pre>root@tecmint:~# fortune\r\n\r\nYou're not my type.  For that matter, you're not even my species!!!\r\nFuture looks spotty.  You will spill soup in late evening.\r\nYou worry too much about your job.  Stop it.  You are not paid enough to worry.\r\nYour love life will be... interesting.<\/pre>\n<h3>4. Command: rev (Reverse)<\/h3>\n<p>It\u00a0<strong>reverse<\/strong>\u00a0every string given to it, is not it funny.<\/p>\n<pre>root@tecmint:~# rev\r\n\r\n123abc \r\ncba321 \r\n\r\nxuniL eb ot nrob\r\nborn to be Linux<\/pre>\n<h3>5. Command: factor<\/h3>\n<p>Time for some\u00a0<strong>Mathematics<\/strong>, this command output all the possible factors of a given number.<\/p>\n<pre>root@tecmint:~# factor 5\r\n\r\n5 \r\n5: 5 \r\n\r\n12 \r\n12: 2 2 3 \r\n\r\n1001 \r\n1001: 7 11 13 \r\n\r\n5442134 \r\n5442134: 2 2721067<\/pre>\n<h3>6. Command: script<\/h3>\n<p>OK fine this is not a command and a script but it is nice.<\/p>\n<pre>root@tecmint:~# for i in {1..12}; do for j in $(seq 1 $i); do echo -ne $i\u00c3\u2014$j=$((i*j))\\t;done; echo;done \r\n\r\n1\u00c3\u20141=1\t\r\n2\u00c3\u20141=2\t2\u00c3\u20142=4\t\r\n3\u00c3\u20141=3\t3\u00c3\u20142=6\t3\u00c3\u20143=9\t\r\n4\u00c3\u20141=4\t4\u00c3\u20142=8\t4\u00c3\u20143=12\t4\u00c3\u20144=16\t\r\n5\u00c3\u20141=5\t5\u00c3\u20142=10\t5\u00c3\u20143=15\t5\u00c3\u20144=20\t5\u00c3\u20145=25\t\r\n6\u00c3\u20141=6\t6\u00c3\u20142=12\t6\u00c3\u20143=18\t6\u00c3\u20144=24\t6\u00c3\u20145=30\t6\u00c3\u20146=36\t\r\n7\u00c3\u20141=7\t7\u00c3\u20142=14\t7\u00c3\u20143=21\t7\u00c3\u20144=28\t7\u00c3\u20145=35\t7\u00c3\u20146=42\t7\u00c3\u20147=49\t\r\n8\u00c3\u20141=8\t8\u00c3\u20142=16\t8\u00c3\u20143=24\t8\u00c3\u20144=32\t8\u00c3\u20145=40\t8\u00c3\u20146=48\t8\u00c3\u20147=56\t8\u00c3\u20148=64\t\r\n9\u00c3\u20141=9\t9\u00c3\u20142=18\t9\u00c3\u20143=27\t9\u00c3\u20144=36\t9\u00c3\u20145=45\t9\u00c3\u20146=54\t9\u00c3\u20147=63\t9\u00c3\u20148=72\t9\u00c3\u20149=81\t\r\n10\u00c3\u20141=10\t10\u00c3\u20142=20\t10\u00c3\u20143=30\t10\u00c3\u20144=40\t10\u00c3\u20145=50\t10\u00c3\u20146=60\t10\u00c3\u20147=70\t10\u00c3\u20148=80\t10\u00c3\u20149=90\t10\u00c3\u201410=100\t\r\n11\u00c3\u20141=11\t11\u00c3\u20142=22\t11\u00c3\u20143=33\t11\u00c3\u20144=44\t11\u00c3\u20145=55\t11\u00c3\u20146=66\t11\u00c3\u20147=77\t11\u00c3\u20148=88\t11\u00c3\u20149=99\t11\u00c3\u201410=110\t11\u00c3\u201411=121\t\r\n12\u00c3\u20141=12\t12\u00c3\u20142=24\t12\u00c3\u20143=36\t12\u00c3\u20144=48\t12\u00c3\u20145=60\t12\u00c3\u20146=72\t12\u00c3\u20147=84\t12\u00c3\u20148=96\t12\u00c3\u20149=108\t12\u00c3\u201410=120\t12\u00c3\u201411=132\t12\u00c3\u201412=144<\/pre>\n<h3>7. Command: Cowsay<\/h3>\n<p>An\u00a0<strong>ASCII<\/strong>\u00a0cow in terminal that will say what ever you want.<\/p>\n<h4>Install Cowsay<\/h4>\n<pre>root@tecmint:~# apt-get install cowsay \t\t(for <strong>Debian<\/strong> based OS)\r\nroot@tecmint:~# yum install cowsay\t\t(for <strong>Red Hat<\/strong> based OS)<\/pre>\n<h5>Output<\/h5>\n<pre>root@tecmint:~# cowsay I Love nix \r\n\r\n ____________\r\n&lt; I Love nix &gt;\r\n ------------\r\n        \\   ^__^\r\n         \\  (oo)\\_______\r\n            (__)\\       )\\\/\\\r\n                ||----w |\r\n                ||     ||<\/pre>\n<p>How about pipelineing \u2018<strong>fortune command<\/strong>\u2018, described above with cowsay?<\/p>\n<pre>root@tecmint:~# fortune | cowsay \r\n\r\n _________________________________________\r\n\/ Q: How many Oregonians does it take to  \\\r\n| screw in a light bulb? A: Three. One to |\r\n| screw in the light bulb and two to fend |\r\n| off all those                           |\r\n|                                         |\r\n| Californians trying to share the        |\r\n\\ experience.                             \/\r\n -----------------------------------------\r\n        \\   ^__^\r\n         \\  (oo)\\_______\r\n            (__)\\       )\\\/\\\r\n                ||----w |\r\n                ||     ||<\/pre>\n<p><strong>Note<\/strong>: \u2018<strong>|<\/strong>\u2018 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 \u2018<strong>fortune<\/strong>\u2018 command acts as an input of \u2018<strong>cowsay<\/strong>\u2018 command. This pipeline instruction is frequently used in scripting and programming.<\/p>\n<p><strong>xcowsay<\/strong>\u00a0is a graphical program which response similar to\u00a0<strong>cowsay<\/strong>\u00a0but in a graphical manner, hence it is\u00a0<strong>X<\/strong>\u00a0of cowsay.<\/p>\n<pre>apt-get install xcowsay\r\nyum install xcowsay<\/pre>\n<h5>Output<\/h5>\n<pre>root@tecmint:~# xcowsay I Love nix<\/pre>\n<div id=\"attachment_3012\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/20-funny-commands-of-linux-or-linux-is-fun-in-terminal\/xcowsay\/\" rel=\"attachment wp-att-3012\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-3012\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2013\/05\/xcowsay.png\" alt=\"install xcowsay \" width=\"620\" height=\"387\" aria-describedby=\"caption-attachment-3012\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-3012\" class=\"wp-caption-text\">xcowsay command<\/p>\n<\/div>\n<p><strong>cowthink<\/strong>\u00a0is another command just run \u201ccowthink Linux is sooo funny\u201d and see the difference in output of cowsay and cowthink.<\/p>\n<pre>apt-get install cowthink\r\nyum install cowthink<\/pre>\n<h5>Output<\/h5>\n<pre>root@tecmint:~# cowthink ....Linux is sooo funny\r\n _________________________\r\n( ....Linux is sooo funny )\r\n -------------------------\r\n        o   ^__^\r\n         o  (oo)\\_______\r\n            (__)\\       )\\\/\\\r\n                ||----w |\r\n                ||     ||<\/pre>\n<h3>8. Command: yes<\/h3>\n<p>It is funny but useful as well, specially in scripts and for\u00a0<strong>System Administrators<\/strong>\u00a0where an automated predefined response can be passed to terminal or generated.<\/p>\n<pre>root@tecmint:~# yes I Love Linux\r\n\r\nI Love Linux\r\nI Love Linux\r\nI Love Linux\r\nI Love Linux\r\nI Love Linux\r\nI Love Linux\r\nI Love Linux\r\nI Love Linux\r\nI Love Linux\r\nI Love Linux\r\nI Love Linux\r\nI Love Linux<\/pre>\n<p><strong>Note<\/strong>: (Till you interrupt i.e\u00a0<strong>ctrl+c<\/strong>).<\/p>\n<h3>9. Command: toilet<\/h3>\n<p>what? Are u kidding, huhh no! Definitely not, but for sure this command name itself is too funny, and I don\u2019t know from where this command gets it\u2019s name.<\/p>\n<h4>Install toilet<\/h4>\n<pre>root@tecmint:~# apt-get install toilet \r\nroot@tecmint:~# yum install toilet<\/pre>\n<h5>Output<\/h5>\n<pre>root@tecmint:~# toilet tecmint \r\n\r\nmmmmmmm                        \"             m                               \r\n   #     mmm    mmm   mmmmm  mmm    m mm   mm#mm          mmm    mmm   mmmmm \r\n   #    #\"  #  #\"  \"  # # #    #    #\"  #    #           #\"  \"  #\" \"#  # # # \r\n   #    #\"\"\"\"  #      # # #    #    #   #    #           #      #   #  # # # \r\n   #    \"#mm\"  \"#mm\"  # # #  mm#mm  #   #    \"mm    #    \"#mm\"  \"#m#\"  # # #<\/pre>\n<p>It even offers some kind of color and fonts style.<\/p>\n<pre>root@tecmint:~# toilet -f mono12 -F metal Tecmint.com<\/pre>\n<div id=\"attachment_3013\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/20-funny-commands-of-linux-or-linux-is-fun-in-terminal\/toilet\/\" rel=\"attachment wp-att-3013\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-3013\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2013\/05\/toilet.png\" alt=\"install toilet command\" width=\"620\" height=\"387\" aria-describedby=\"caption-attachment-3013\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-3013\" class=\"wp-caption-text\">toilet command<\/p>\n<\/div>\n<p><strong>Note<\/strong>:\u00a0<strong>Figlet<\/strong>\u00a0is another command that more or less provide such kind of effect in terminal.<\/p>\n<h3>10. Command: cmatrix<\/h3>\n<p>You might have seen Hollywood movie \u2018<strong>matrix<\/strong>\u2018 and would be fascinated with power,\u00a0<strong>Neo<\/strong>\u00a0was provided with, to see anything and everything in matrix or you might think of an animation that looks alike\u00a0<strong>Hacker<\/strong>\u2018s desktop.<\/p>\n<h4>Install cmatrix<\/h4>\n<pre>root@tecmint:~# apt-get install cmatrix\r\nroot@tecmint:~# yum install cmatrix<\/pre>\n<h5>Output<\/h5>\n<pre>root@tecmint:~# cmatrix<\/pre>\n<div id=\"attachment_3014\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/20-funny-commands-of-linux-or-linux-is-fun-in-terminal\/cmatrix\/\" rel=\"attachment wp-att-3014\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-3014\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2013\/05\/cmatrix.png\" alt=\"cmatrix command\" width=\"620\" height=\"387\" aria-describedby=\"caption-attachment-3014\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-3014\" class=\"wp-caption-text\">cmatrix command<\/p>\n<\/div>\n<h3>11. Command: oneko<\/h3>\n<p>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. \u201c<strong>oneko<\/strong>\u201c\u009d is a package that will attach a \u201c<strong>Jerry<\/strong>\u201c\u009d with you mouse pointer and moves along with you pointer.<\/p>\n<h4>Install oneko<\/h4>\n<pre>root@tecmint:~# apt-get install oneko\r\nroot@tecmint:~# yum install oneko<\/pre>\n<h5>Output<\/h5>\n<pre>root@tecmint:~# oneko<\/pre>\n<div id=\"attachment_3015\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/20-funny-commands-of-linux-or-linux-is-fun-in-terminal\/oneko\/\" rel=\"attachment wp-att-3015\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-3015\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2013\/05\/oneko.png\" alt=\"install oneko\" width=\"620\" height=\"387\" aria-describedby=\"caption-attachment-3015\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-3015\" class=\"wp-caption-text\">oneko command<\/p>\n<\/div>\n<p><strong>Note<\/strong>: Once you close the terminal from which\u00a0<strong>oneko<\/strong>\u00a0was run,\u00a0<strong>jerry<\/strong>\u00a0will disappear, nor will start at start-up. You can add the application to start up and continue enjoying.<\/p>\n<h3>12. Fork Bomb<\/h3>\n<p>This is a very nasty piece of code. Run this at\u00a0<strong>your own risk<\/strong>. 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\u00a0<strong>fork bomb<\/strong>).<\/p>\n<pre>root@tecmint:~# :(){ :|:&amp; }:\r\n<\/pre>\n<h3>13. Command: while<\/h3>\n<p>The below \u201c<strong>while\u201d<\/strong>\u00a0command is a script which provides you with colored date and file till you interrupt (<strong>ctrl + c<\/strong>). Just copy and paste the below code in terminal.<\/p>\n<pre>root@tecmint:~# while true; do echo \"$(date '+%D %T' | toilet -f term -F border --gay)\"; sleep 1; done<\/pre>\n<div id=\"attachment_3016\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/20-funny-commands-of-linux-or-linux-is-fun-in-terminal\/while\/\" rel=\"attachment wp-att-3016\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-3016\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2013\/05\/while.png\" alt=\"Linux while command\" width=\"620\" height=\"387\" aria-describedby=\"caption-attachment-3016\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-3016\" class=\"wp-caption-text\">Linux while command<\/p>\n<\/div>\n<p><strong>Note<\/strong>: The above script when modified with following command, will gives similar output but with a little difference, check it in your terminal.<\/p>\n<pre>root@tecmint:~# while true; do clear; echo \"$(date '+%D %T' | toilet -f term -F border --gay)\"; sleep 1; done<\/pre>\n<h3>14. Command: espeak<\/h3>\n<p>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\u2019s voice.<\/p>\n<h4>Install espeak<\/h4>\n<pre>root@tecmint:~# apt-get install espeak\r\nroot@tecmint:~# yum install espeak<\/pre>\n<h5>Output<\/h5>\n<pre>root@tecmint:~# espeak \"Tecmint is a very good website dedicated to Foss Community\"<\/pre>\n<h3>15. Command: aafire<\/h3>\n<p>How about fire in your terminal. Just type \u201c<strong>aafire<\/strong>\u201d in the terminal, without quotes and see the magic. Press any key to interrupt the program.<\/p>\n<h4>Install aafire<\/h4>\n<pre>root@tecmint:~# apt-get install libaa-bin<\/pre>\n<h5>Output<\/h5>\n<pre>root@tecmint:~# aafire<\/pre>\n<div id=\"attachment_3017\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/20-funny-commands-of-linux-or-linux-is-fun-in-terminal\/aafire\/\" rel=\"attachment wp-att-3017\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-3017\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2013\/05\/aafire.png\" alt=\"install aafire\" width=\"620\" height=\"387\" aria-describedby=\"caption-attachment-3017\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-3017\" class=\"wp-caption-text\">aafire command<\/p>\n<\/div>\n<h3>16. Command: bb<\/h3>\n<p>First install \u201c<strong>apt-get insatll bb<\/strong>\u201d and then, type \u201c<strong>bb<\/strong>\u201d in terminal and see what happens.<\/p>\n<pre>root@tecmint:~# bb<\/pre>\n<div id=\"attachment_3018\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/20-funny-commands-of-linux-or-linux-is-fun-in-terminal\/bb\/\" rel=\"attachment wp-att-3018\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-3018\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2013\/05\/bb.png\" alt=\"bb command\" width=\"620\" height=\"387\" aria-describedby=\"caption-attachment-3018\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-3018\" class=\"wp-caption-text\">bb command<\/p>\n<\/div>\n<h3>17. Command: url<\/h3>\n<p>Won\u2019t it be an awesome feeling for you if you can update you\u00a0<strong>twitter status<\/strong>\u00a0from command line in front of your friend and they seems impressed. OK just replace\u00a0<strong>username<\/strong>,\u00a0<strong>password<\/strong>\u00a0and\u00a0<strong>your status message<\/strong>\u00a0with your\u2019s\u00a0<strong>username<\/strong>,\u00a0<strong>password<\/strong>\u00a0and \u201c<strong>your status message<\/strong>\u201c.<\/p>\n<pre>root@tecmint:~# url -u YourUsername:YourPassword -d status=\"Your status message\" http:\/\/twitter.com\/statuses\/update.xml<\/pre>\n<h3>18. ASCIIquarium<\/h3>\n<p>How it will be to get an\u00a0<strong>aquarium<\/strong>\u00a0in terminal.<\/p>\n<pre>root@tecmint:~# apt-get install libcurses-perl\r\nroot@tecmint:~# cd \/tmp \r\nroot@tecmint:~# wget http:\/\/search.cpan.org\/CPAN\/authors\/id\/K\/KB\/KBAUCOM\/Term-Animation-2.4.tar.gz\r\nroot@tecmint:~# tar -zxvf Term-Animation-2.4.tar.gz\r\nroot@tecmint:~# cd Term-Animation-2.4\/\r\nroot@tecmint:~# perl Makefile.PL &amp;&amp;  make &amp;&amp;   make test\r\nroot@tecmint:~# make install<\/pre>\n<h5>Install ASCIIquarium<\/h5>\n<p>Now Download and Install\u00a0<strong>ASCIIquarium<\/strong>.<\/p>\n<pre>root@tecmint:~# cd \/tmp\r\nroot@tecmint:~# wget http:\/\/www.robobunny.com\/projects\/asciiquarium\/asciiquarium.tar.gz\r\nroot@tecmint:~# tar -zxvf asciiquarium.tar.gz\r\nroot@tecmint:~# cd asciiquarium_1.1\/\r\nroot@tecmint:~# cp asciiquarium \/usr\/local\/bin\r\nroot@tecmint:~# chmod 0755 \/usr\/local\/bin\/asciiquarium<\/pre>\n<p>And finally run \u201c<strong>asciiquarium<\/strong>\u201d or \u201c<strong>\/usr\/local\/bin\/asciiquarium<\/strong>\u201c\u009d in terminal without quotes and be a part of magic that will be taking place in front of your eyes.<\/p>\n<pre>root@tecmint:~# asciiquarium<\/pre>\n<div id=\"attachment_3019\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/20-funny-commands-of-linux-or-linux-is-fun-in-terminal\/ascliquarium\/\" rel=\"attachment wp-att-3019\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-3019\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2013\/05\/ascliquarium.png\" alt=\"install aquarium\" width=\"620\" height=\"387\" aria-describedby=\"caption-attachment-3019\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-3019\" class=\"wp-caption-text\">aquarium command<\/p>\n<\/div>\n<h3>19. Command: funny manpages<\/h3>\n<p>First install \u201c<strong>apt-get install funny-manpages<\/strong>\u201d and then run man pages for the commands below. Some of them may be\u00a0<strong>18+<\/strong>, run at your own risk, they all are too funny.<\/p>\n<pre>baby\r\ncelibacy\r\ncondom\r\ndate\r\necho\r\nflame\r\nflog\r\ngong\r\ngrope, egrope, fgrope \r\nparty \r\nrescrog \r\nrm\r\nrtfm\r\ntm\r\nuubp\r\nwoman (undocumented)\r\nxkill \r\nxlart \r\nsex \r\nstrfry<\/pre>\n<pre>root@tecmint:~# man baby<\/pre>\n<h3>20. Linux Tweaks<\/h3>\n<p>It is time for you to have some one liner\u00a0<strong>tweaks<\/strong>.<\/p>\n<pre>root@tecmint:~# world\r\n\r\nbash: world: not found<\/pre>\n<pre>root@tecmint:~# touch girls\\ boo** \r\n\r\ntouch: cannot touch `girls boo**': Permission denied<\/pre>\n<pre>root@tecmint:~# nice man woman\r\n\r\nNo manual entry for woman<\/pre>\n<pre>root@tecmint:~# ^How did the sex change operation go?^ \r\n\r\nbash: :s^How did the sex change operation go?^ : substitution failed<\/pre>\n<pre>root@tecmint:~# %blow \r\n\r\nbash: fg: %blow: no such job<\/pre>\n<pre>root@tecmint:~# make love \r\n\r\nmake: *** No rule to make target `love'.  Stop.<\/pre>\n<pre>$ [ whereis my brain?                    \r\nsh: 2: [: missing ]<\/pre>\n<pre>% man: why did you get a divorce? \r\nman:: Too many arguments.<\/pre>\n<pre>% !:say, what is saccharine? \r\nBad substitute.<\/pre>\n<pre>server@localhost:\/srv$ \\(- \r\nbash: (-: command not found<\/pre>\n<p>Linux is sexy:\u00a0<strong>who | grep -i blonde | date; cd ~; unzip; touch; strip; finger; mount; gasp; yes; uptime; umount; sleep<\/strong>\u00a0(If you know what i mean)<\/p>\n<p>There are certain other but these don\u2019t work on all the system and hence not included in this article. Some of them are man\u00a0<strong>dog<\/strong>\u00a0,\u00a0<strong>filter<\/strong>,\u00a0<strong>banner<\/strong>, etc.<\/p>\n<p>Have fun, you can say me thanks later \ud83d\ude42 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.<\/p>\n<p><a href=\"https:\/\/www.tecmint.com\/20-funny-commands-of-linux-or-linux-is-fun-in-terminal\/\" target=\"_blank\" rel=\"noopener\">Source<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Linux\u00a0is fun!\u00a0Huhhh. OK so you don\u2019t believe me. Mind me at the end of this article you will have to believe that\u00a0Linux\u00a0is actually a fun box. 20 Linux Funny Commands 1. Command: sl (Steam Locomotive) You might be aware of command \u2018ls\u2018 the list command and use it frequently to view the contents of a &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.appservgrid.com\/paw92\/index.php\/2019\/04\/01\/20-funny-commands-of-linux-or-linux-is-fun-in-terminal\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;20 Funny Commands of Linux or Linux is Fun in Terminal&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-13223","post","type-post","status-publish","format-standard","hentry","category-linux"],"_links":{"self":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/13223","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/comments?post=13223"}],"version-history":[{"count":1,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/13223\/revisions"}],"predecessor-version":[{"id":13224,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/13223\/revisions\/13224"}],"wp:attachment":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/media?parent=13223"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/categories?post=13223"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/tags?post=13223"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}