该文件包含空格,因此可以执行类似的操作
data=`cat file.txt`
sed -e "s/pattern/$data/" input.file
给我错误sed: -e expression #1, char 10: unterminated `s' command
我尝试编辑file.txt中的所有空格,并在它们前面加上\(因此,每个空格现在为\
),但这没有帮助。
我如何使用sed仅将单词模式替换为整个文件的内容?
答案 0 :(得分:-2)
没关系,
我错过了导致问题的空白。跳了枪。