K, I tried to make a script to take a plain text file, replace it with a new txt file in which:
1. Every line begins with printf("
2. Every line ends with \n");
3. Every " is escaped
4. Every \ is escaped
It works except for the escaping of \. I am getting the error: sed: -e expression #1, char 8: unterminated `s' command
The relevant line is at the moment:
sed -i 's:\:\\:g' 1.txt
What am I doing wrong? (I tried also 's:\\:\\\:g'):wq
LOL nevermind I just needed s:\\:\\\\:g