I'm new to Linux and Bat Scripts so this question might seem easy to many of you.
I have a bat script that is supposed to overwrite a file with text. I'm unable to copy all the text because it includes ">>" within the text i want to copy.
Example:
ECHO "echo -e Text_to_copy >> /home/fileA.csv" >A.txt
The code above works but the quotations (") are copied as well and I need them removed from my end result (A.txt). If I use apostrophes (') instead of quotations then, I only get partial text added to my end file (echo -e Text_to_copy)
Any advice is appreciated