I'm using sed command to delete the first two line, but when I redirect the content to a file appear the number of rows. I don't know how can I delete it.
I execute:
sed '7,9d' mi_fichero.txt
And the result is:
(I write the last lines)
/XTENT/D3/REPOSITORY/20120305/2201/65601/84/1330951636844_D3_448987414829688495_.indd.gz
/XTENT/D3/REPOSITORY/20120308/2201/65601/22/1331198783835_D3_3411473776849856760_.indd.gz
/XTENT/D3/REPOSITORY/20120308/2201/65601/158/1331220874606_D3_2742969984589497048_.indd.gz
/XTENT/D3/REPOSITORY/20120313/2201/65601/0/1331626743284_D3_7551629114585379089_.indd.gz
/XTENT/D3/REPOSITORY/20120309/2201/65601/92/1331295878839_D3_4724445611762228808_.indd.gz
(60 rows)
I want to delete the line (60 rows), Anybody can help me ?
Thanks :)