I have a source text in a file and looking for a code that would take the second (or n-th - in general) row from this file and print to a seperate file.
Any idea how to do this?
|
I have a source text in a file and looking for a code that would take the second (or n-th - in general) row from this file and print to a seperate file. Any idea how to do this? | |||||
feedback
|
|
You can do this natively in Perl with the flip-flop operator and the special variable
Or from the command line:
You can also do this without Perl with: | |||||||||
feedback
|
|
You could always:
| |||
|
feedback
|
|
use like this script.pl > outfile (or >> outfile for append) this uses lexical filehandles and 3 arg open which are preferred to global filehandles and 2 arg open.
note: $INPUT_LINE_NUMBER == $. here's a slightly improved version that handles arbitrary amounts of line numbers and prints to a file.
| |||||||
feedback
|
|
I think this will do what you want: line_transfer_script.pl:
Then you'd call it like: perl line_transfer_script.pl 2 and that would write the 2nd line from file_to_read_from.txt into file_to_write_to.txt. | |||||||
feedback
|
| ||||
|
feedback
|