-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
  • 72,312
Freddy
  • 1,349

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