我正在尝试更改文件中的文字:
file.txt,c:\path\to\file
file.txt,c:\path with spaces\to\file
file.txt,c:\path\to\file with spaces
file.txt,c:\path\to\file with spaces
file.txt,c:\path\to\file with spaces
对于这种输出(文件的一个路径):
c:\path\to\file\file.txt
c:\path with spaces\to\file\file.txt
c:\path\to\file with spaces\file.txt
c:\path\to\file with spaces\file.txt
c:\path\to\file with spaces\file.txt
此ALMOST有效,但在行尾需要',':
sed 's@\(.*\),\(.*\),\(.*\)@\2,\1,\3@g' file
任何帮助都会受到赞赏,我不知道这一切都很好......
修改
这对我有用,但我还是想在其中添加一个“\”:
sed 's@\(.*\),\(.*\)@\2,\1,\3@g' file
答案 0 :(得分:9)
转义反斜杠,\\
。
sed 's/^\(.*\),\(.*\)$/\2\\\1/g' file
--^^--
此外,您只需要两个捕获组。
但是因为我更像是一个awk
家伙。
awk -F, '{ print $2 "\\" $1 }' file