Hello folks!
I don't know if I am in the right forum but I have a problem:
I have HUGE txt files, but I am interested in only a very little part of it and it is visualizable when I use this LONG command:
Code:
tail -3 name_file.txt | head -1 | head -c36 | tail -c7
but I would like to have a newline after it. The \n is not recognized in the bash.
How can I do it??
Thanks a lot
G