I am currently working on a shell script where an error may sometimes get outputted to a file but I need the error moved as it doesn't mean anything and everything works as normal as long the error isn't there.
I have a script which has the following:
ftp ftp://$2:$3@$1 << BLOCK > $5
cd "$4"
ls
quit
BLOCK
$5 is the file that the output of the FTP command is written to. So in the file I have the following
total 8
-rw-r--r-- 1 root root 42 Dec 17 14:26 test1.txt
-rw-r--r-- 1 root root 6 Dec 17 14:08 test2.txt
Sometimes I get the error ?Invalid command. so I am using sed to remove the error from the file. I have changed the shell script to the following. Note for testing I have put error within the FTP to ensure I get the error message mentioned above.
ftp ftp://$2:$3@$1 << BLOCK > $5
cd "$4"
ls
error
quit
BLOCK
fileout=$(sed '/?Invalid command./d' $5)
echo $fileout > $5
This is working in the sense that I am removing the error message but it also removing the line breaks so when I look at the file I get the following
total 8 -rw-r--r-- 1 root root 42 Dec 17 14:26 test1.txt -rw-r--r-- 1 root root 6 Dec 17 14:08 test2.txt
How do I retain line breaks?
Thanks for any help you can provide.
