最佳答案
从 sed
输出:
http://sitename.com/galleries/83450
72-profile
这两个字符串应合并为一个,并用空格分隔,如:
http://sitename.com/galleries/83450 72-profile
两个字符串流水到 tr
,以便用空格替换换行符:
tr '\n' ' '
它不工作,结果是相同的输入。
用 ASCII 代码 '\032'
表示空格会导致用不可打印字符替换 \n
。
怎么了? 我在 Windows 上用 Git Bash。