in reply to Re^2: Delete a line from the filein thread Delete a line from the file
$ echo 'foo\'bar' > <- waits for closing ' [download]
Fixes:
$ echo foo\'bar foo'bar $ echo "foo'bar" foo'bar $ echo 'foo'\''bar' foo'bar $ echo 'foo'"'"'bar' foo'bar [download]