Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个从别人的软件生成的平面文件。他们在文件的某些位置插入空字符 ^@。我希望用-9之类的东西替换它们。如何在 Mac OS X 的终端中有效地搜索和替换此字符?
谢谢。
在 linux 中有另一篇文章解决了这个问题。
(为了保持使用不同工具为 shell 脚本问题提出多个答案的 SO 传统):
与tr:
tr
tr -d '\0'
与sed:
sed
sed 's/\x0/-9/g' filename > newfile