Is there a way to append one file to another in a bash script without it complaining about the <
>
characters? I'm trying to append a file that contains some xml to another but it keeps throwing a
syntax error near unexpected token 'newline'
'<myTag>'
The operation is simply myFile.txt >> otherFile.xml
I know they're placeholder characters but I haven't been able to turn up any results on making them get interpreted as literals