In this article, we will review a cool and simple way of giving a command screen output a rainbow colors and slowing down its output speed as well for one reason or the other.

The lolcat program is used for the above purpose. It basically functions by concatenating files, or standard input, to standard output in a similar way as the cat command, overrides the default screen output color of a particular command and adds rainbow coloring to it.

How to Install Lolcat Program in Linux

Lolcat program is available on almost all modern Linux distributions from its default repository, but the available version bit older. Alternatively you can install latest version of lolcat from git repository using this following guide.

  1. Install Lolcat to Output Rainbow Of Colors in Linux Terminal

Once lolcat installed, the basic syntax for running lolcat is:

$ lolcat [options] [files] ...

It comes with several options that control its behavior, below are a few of the most considerable flags we will emphasis for the scope of this guide:

  1. -a – passes every input line through an animation effect.
  2. -d – specifies the duration (number of steps before displaying next line) of the animation effect, the default value is 12.
  3. -s – it specifies the speed (frame rate- number of steps per second) of the animation effect, default value is 20.
  4. -f – enables forcing of coloring in case standard output is not a tty.

You can find more options in the lolcat man page:

$ man lolcat 

How to Use Lolcat in Linux

To use lolcat, simply pipe the output of any relevant command to it and watch the magic.

For example:

$ ls -l | lolcat -as 25

colorful Linux Terminal Output

Besides you can alter the default speed, in the following command, we will use a relatively slow speed of 10 steps per second:

$ ls -l | lolcat -as 10

You can use any command with lolcat display output in colorful fashion on Linux terminal, few commands say ps, date and cal as:

$ ps | lolcat
$ date | lolcat
$ cal | lolcat

In this article, we have looked at how to significantly reduce the speed of a command screen output and give it a rainbow coloring effect.

As usual, you can address to us any questions or comments concerning this article via the feedback section below. Lastly, you can mention to us any useful Linux commands you have discovered there.

Similar Posts