|
append a line to the last line in a file
Suppose i have a file "xyz.txt" which contains
abcdef
ghijklm
nop
Now in want to add "qrst" to the last line such that the file becomes
abcdef
ghijklm
nopqrst
P.S:The o/p i need is
abcdef
ghijklm
nopqrst (and not) nop
qrst
|