First, I'm in Korea. So my English will very bad.
I want to edit third line with out touching first line and the second line.
Before:
echo sample
echo sample
echo sample
echo sample
After:
echo sample
echo sample
echo hello
echo sample
Just like this. without using this command:
echo echo sample> test.txt
echo echo sample> test.txt
echo echo hello> test.txt
echo echo sample> test.txt
So, I mean is not write 1,2,4's 'echo' and 'sample' things. Only the third line's 'echo'. What can I do?