A colorful cat under Linux

A colorful cat under Linux

Friends who have used the Linux system must have used the cat command. Of course, under Linux, this cat is not that cat. The cat here does not mean cat, but is the abbreviation of the word concatenate.

The cat command is a text viewing command under Unix or Unix-like systems. It can also be used with redirection to achieve merging and copying functions. It is one of the most commonly used commands in GNU Linux and Linux-like operating systems and is used very frequently.

But for programmers, the problem with cat command is that its output does not have any color marking. If we use the cat command to view the code file, it is really inconvenient to read without color marking of keywords.

In order to solve this pain point, a big guy developed the ccat command. ccat is very similar to cat , but when using the ccat command, the code content displayed will be colored, which is very friendly to programmers. Currently, ccat supports JavaScript, Java, Ruby, Python, Go, C and JSON languages.

The following is a detailed introduction to the usage of ccat.

1. Install Ccat

1) ccat command is directly available in AUR, so if you have AUR helper in your system, you can directly install it. For example, on the Arch system, you can install it directly using the yay command.

Arch User Repository is commonly referred to as AUR. AUR Helper is a wrapper that allows users to install packages from the AUR repository without manual intervention.

$ yay -S ccat

2) In other Linux distributions, you need to compile and install ccat, the steps are as follows:

Use the following command to download the source archive compressed package

$ wget https://github.com/jingweno/ccat/releases/download/v1.1.0/linux-amd64-1.1.0.tar.gz

Unzip the downloaded archive

$ tar xfz linux-amd64-1.1.0.tar.gz

Copy the ccat executable to your system $PATH (e.g., /usr/local/bin/)

$ sudo cp linux-amd64-1.1.0/ccat /usr/local/bin/

Finally, use chmod to add executable permissions for the ccat command

$ sudo chmod +x /usr/local/bin/ccat

2. How to use ccat to colorize the cat command

The usage of ccat is very similar to the cat command. Here are some examples.

Let's first use the cat command to view a text file, such as hello.c.

$ cat hello.c

The effect is as follows

You can see that the code does not have any color marking (this result should be familiar to everyone). Now, use ccat again to view the text file hello.c and see how it displays the output.

$ ccat hello.c

The effect is as follows:

Did you notice the difference? ccat displays the output with syntax highlighting, whereas the cat command simply displays the output in the system's default theme colors.

We can also display the output of multiple files at a time as shown below.

$ ccat test.txt example.txt

For some reasons, you may want to display the output in HTML format. To do this, just add the “--html” option to the end.

$ ccat test.txt --html

Not only local files, we can also display the contents of files directly on the network as shown below.

$ curl https://raw.githubusercontent.com/jingweno/ccat/master/main.go | ccat

To see the default code coloring, run the following command.

$ ccat --palette

Of course, you can set your own color code as follows.

$ ccat -G String="_fuchsia_" -G Plaintext="darkteal" hello.c

ps: You may encounter the following errors during the download step

This is because GitHub upgraded OpenSSL and disabled TLSv1.1. You only need to update the local OpenSSL and Git tools to solve the problem.

3. Replace cat in the system

If you like ccat and want to replace the default cat command with ccat, just create an alias.

If you installed from AUR in Arch Linux, add the following line in your ~/.bashrc file.

alias cat=ccat

If you installed from compiled binary, then add the following line in your ~/.bashrc file.

alias cat=/usr/local/bin/ccat

Finally, run the following command for the changes to take effect.

$ source ~/.bashrc

To add it system-wide (all users can use this command), add the above entry in /etc/bashrc (on RPM based systems) or /etc/profile (on Debian based systems) file.

This is the end of this article about a colorful "cat" under Linux. For more relevant content on the usage of linux ccat, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

<<:  How to implement scheduled backup of CentOS MySQL database

>>:  Examples of using provide and inject in Vue2.0/3.0

Recommend

How to limit the value range of object keys in TypeScript

When we use TypeScript, we want to use the type s...

Count the list tags in HTML

1. <dl> defines a list, <dt> defines ...

How to install setup.py program in linux

First execute the command: [root@mini61 setuptool...

Set the width of the table to be fixed so that it does not change with the text

After setting the table width in the page to width...

Detailed installation tutorial of mysql 5.7.11 under Win7 system

Operating system: Win7 64-bit Ultimate Edition My...

Detailed explanation of common methods of Vue development

Table of contents $nextTick() $forceUpdate() $set...

React implements a general skeleton screen component example

Table of contents What is a skeleton screen? Demo...

Generate OpenSSL certificates in Linux environment

1. Environment: CentOS7, Openssl1.1.1k. 2. Concep...

Basic tutorial on using explain statement in MySQL

Table of contents 1. Overview 1. Explain statemen...

How to use the VS2022 remote debugging tool

Sometimes you need to debug remotely in a server ...

Basic introductory tutorial on MySQL partition tables

Preface In a recent project, we need to save a la...

A brief discussion on how to elegantly delete large tables in MySQL

Table of contents 1. Truncate operation 1.1 What ...

VMware Workstation 14 Pro installs CentOS 7.0

The specific method of installing CentOS 7.0 on V...