Originariamente inviato da Hamish
codice:
If the first character of N (the number of bytes or lines) is  a  `+',
print beginning with the Nth item from the start of each file,
 otherwise, print the last N items in the file.
N may have a multiplier suffix: b 512, k  1024,  m 1024*1024.
ho fatto due provine...
codice:
tail -n +0 /var/log/messages | wc -l
534894
codice:
tail -n +534300  /var/log/messages | wc -l
595
direi che torna perfettamente
Sì...
Se do tail -n +564645456
Oppure tail -c +654465456
funziona anche a me...

Ma se dai soltanto
"tail +6156"
senza nessun'altra opzione, cosa succede?