I have lines in a file that look like this:
FA General,1234567^^^^^FA Student Letter- General^<<undefined>>^\pathofile.RTF
I'm trying to use sed to replace the caret characters with commas. If I use:
sed 's/^/,/' file.txt
Nothing changes. I've also tried
sed 's/\^/,/' file.txt
sed 's/^^/,/' file.txt
What am I missing here?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…