I am working with ffmpeg and want to automate making one big video from many smaller. I can use a list file, but each line Must Be file 'name.ext'. I can't figure out how to get sed or awk to NOT see the ' as a control character. Any way to do that?
I have tried using a variable as instead of the string file ', tried a two statement script where i set file @ then use another cmd to change the @ to ', but it fails every time
awk '{print "line @" $0}' uselessInfo.txt >goofy2.txt
sed '/@/\'/g' goofy2.txt >goofy3.txt
tried the sed line with " around the ' also