Cabezon aurélien wrote:
> 
> i wonder how to delete the first 10 lines in a file.
> some idea?


perl -ni -e'print if $. > 10' yourfile.txt



John
-- 
use Perl;
program
fulfillment

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to