This is very new to me but, I am slowly picking it up.
I need to open a file, return first line to a var to do stuff then delete first line from file after stuff is successful.
In mt script, here is what prints all but the first line to screen.
$file = 'test.txt';
system "tail -n+2 /home/username/public_html/adir/$file";
Now I did some poking around here and found:
system "sed -i '1d' home/username/public_html/adir/$file";
Which is supposed to remove the first line of the file inline. (I did not try)
That would be perfect if I could also return the first line to a $variable to do stuff.
If stuff fails, I could add the line back into the file.
I know I could do this with a bunch of FILE < and > with arrays but, seems a bit much.
The file is small, less than 100 lines of 6 characters each.
Am I totally clueless as to pursuing sed or tail for this?
How do I return the removed line as $line using these system calls?
Thanks for the learning experience.