-8

There's lot of stuff we can do at a terminal, many of them very useful.

But, what commands are there that exist only to amuse the user?

Zanna
  • 70,465
Freddy
  • 1,349
  • 1
    This is extraordinarily broad, and I believe does not fit with the types of Q/A posts we are looking for on this site (per the Help Center and Meta discussions) – Thomas Ward Nov 08 '15 at 19:59
  • 2
    @ThomasW. It is very broad, but the answer is very good, perhaps Freddy could try to reword the question slightly to be a better fit ? I believe this could have some value here. – Mark Kirby Nov 08 '15 at 20:06
  • 2
    The point remains: a question asking for a list of things without limit is not a good fit for Stack Exchange. – muru Nov 08 '15 at 20:13
  • @muru There are questions here asking for list of things. http://askubuntu.com/questions/30334/what-application-indicators-are-available/38006#38006 – Freddy Nov 08 '15 at 20:15
  • 2
    @Freddy care to read the first paragraph on that? – muru Nov 08 '15 at 20:16
  • 1
    @muru Oh I am really sorry i did not read that! :( – Freddy Nov 08 '15 at 20:17
  • 1
    From time to time we make exceptions to the too broad rule. I think this case might qualify. – WinEunuuchs2Unix Oct 19 '17 at 11:34

1 Answers1

8
  1. sl

    Very often we mistype ls as sl.

    what if you get something like this:

enter image description here

install sl:

sudo apt-get install sl

  1. Fortune

    Fortune ----> prints random stuff

enter image description here

install fortune:

sudo apt-get install fortune

  1. Cowsay(part 1)

    want cow on terminal?

enter image description here

install cowsay

sudo apt-get install cowsay

cowsay + fortune

enter image description here


  1. cowsay(part 2)

    you will see something like this:

enter image description here

install xcowsay

sudo apt-get install xcowsay

  1. cmatrix

enter image description here

install cmatrix

sudo apt-get install cmatrix

  1. bb(one of mine favourite)

enter image description here

press 8. turn up volume to max(wear headphone)

it will show you something like this:

enter image description here

And then it will play music!

install bb

sudo apt-get install bb

Freddy
  • 1,349