Add Rainbow Colors to Linux Command Output in Slow Motion

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.

Aaron Kili
Aaron Kili is a Linux and F.O.S.S enthusiast, an upcoming Linux SysAdmin, web developer, and currently a content creator for TecMint who loves working with computers and strongly believes in sharing knowledge.

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

Join the TecMint Weekly Newsletter (More Than 156,129 Linux Enthusiasts Have Subscribed)
Was this article helpful? Please add a comment or buy me a coffee to show your appreciation.

3 Comments

Leave a Reply
  1. Can you tell me a way to add this in bashrc so that it works every time on the terminal and I don’t have to pipe my stdout to lolcat every time

    Reply
    • @Ice

      Yap, it’s not exactly useful to experienced Linux users but newbies may find it a little interesting. Thanks for the feedback.

      Reply

Leave a Reply to Aaron Kili Cancel reply

Thank you for taking the time to share your thoughts with us. We appreciate your decision to leave a comment and value your contribution to the discussion. It's important to note that we moderate all comments in accordance with our comment policy to ensure a respectful and constructive conversation.

Rest assured that your email address will remain private and will not be published or shared with anyone. We prioritize the privacy and security of our users.