Posted by Marcelo on Sabadini
10/06/2009
Linux - Using the command 'tail'
The command 'tail' is used to examine the contents of files. He has some interesting variations ...
To view the last 10 lines of a file use the following command:
$ Tail / path / to / arquivo.log
Now suppose you want to see the last 50 lines of file:
$ Tail-n 50 / path / to / arquivo.log
We go to a practical example!
Posted by Marcelo on Sabadini
03/06/2009
Linux - Redirect Operators
Good morning all good people?
Today I will spend a quick tip on Linux.
Redirection operators
Well, redirection operators, as the name implies, serves to direct the output of a program to a file or another program and much more.


