I need to save the result of a grep command into a file, but I also want the output file to be formatted and keep the colors just like in the terminal.
Is there a way to do that? Maybe make grep save to a some kind of markup language? If it is not possible, is there another tool that can accomplish this task?
I am trying to make the search keyword stand out in the output file, exactly like it does in the terminal.
To keep the markup, you need more than just a text file. I'd use HTML output to keep the colors.
Install aha i.e. to "converts ANSI escape sequences of a unix terminal to HTML code"
then save your
grep
(orls
) output like this:options:
Syntax highlight for file extension via
pygmentize
install
pygmentize
:then run this kind of command:
Depending on what you're wanting to do with the output file, it's possible to add colors to a normal text file because the colors simply come from some special characters. Grep seems to not want to print them when you redirect it to a file, so you need to force it to:
Now, when you print the file to the console it will be printed with the colors, because Bash interprets those characters as "use this color".
However, if you open it in an editor like
vim
, you'll get some strange characters. For example, when I use the commandsThe output looks right when I print it using
cat
but when I open it invim
I getSo if you're wanting to use an editor this probably isn't what you want.
If I understood correctly you want to save a terminal output in a text file, right? But you want it to be formatted with colors. If that's the case, here are my ideas:
Highlighting the output automatically
As you probably know, if you capture a grep output into a text file, exactly because it is a text file it cannot be formated. So, as far as I know, you cannot do it in an easy way.
In spite of that there is a simple workaround, consisting in making realize your text editor what kind of file is opening. For example, let's say that your grep output have some bash components, so the bash highlights works for you (by the way, these are often the colors that you see in a colored output in the terminal). So the trick is to save the text output in a file with the proper extension. Instead of doing something like:
you may go for
Which will make gedit (or any decent text editor) automatically recognize that you're talking about bash code, and will highlight it accordingly. You don't need to color the output, the program will do it for you if it recognizes the type of code that it's opening. If you are working with other type of formats, just adapt the extension to that adjusting better for what you are greping on (e.g. > output.xml, > output.html , > output.py ...etc). Good luck! :)
Highlighting the some words in the output file
So, if I got it, you want to highlight the words you searched for. Again, that cannot be done in a plain text file just because is a plain text. However you can add some format to it in a very easy way such as using some html coding. This will transform your output in an html code, and when you open it with a program able to interpret html (libreoffice writer, firefox, and 10000 etceteras) you will see some words highlited.
To do so, let's say this is your grep, exported to html:
And now you want to highlight keytext in your output. You can use sed to do it, like:
And violà, now your keytext is highlited in red.
select the contents of the terminal and right click inside the terminal. In the options you can find "copy as HTML". Select the option and paste the copied contents to a file and save it as as an html file. opening the html file using any html renderers (eg. browser). You will be presented with the same contents and colours as your terminal has. tested and verified in ubuntu 20.04 LTS.