Linux Basic Command: "head" & "tail"

Pubblicato il: 22 maggio 2020
sul canale di: Virtu Mentor
98
6

head - output the first part of files

head print default first ten lines of output

We can also print specific numbers of line using below command
(Here we are printing 5 lines, you can change number of lines

$ head -5 messages

tail - output the last part of files

tail print default first ten lines of output

We can also print specific numbers of line using below command
(Here we are printing 5 lines, you can change number of lines

$ tail -5 messages

Sometimes, we need continuously print last lines from log file during troubleshooting
Here, we can use parameter -f with tail command
$ tail -f messages

We also have command for this
$ tailf messages


Thank you!


In questa pagina del sito puoi guardare il video online Linux Basic Command: "head" & "tail" della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Virtu Mentor 22 maggio 2020, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 98 volte e gli è piaciuto 6 spettatori. Buona visione!