Sì...Originariamente inviato da Hamish
ho fatto due provine...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.
codice:tail -n +0 /var/log/messages | wc -l 534894direi che torna perfettamentecodice:tail -n +534300 /var/log/messages | wc -l 595![]()
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?