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.
我使用 sed -i 在 Windows 上编辑一些文件。之后,Windows 无法识别这些文件。sed 似乎使用了 CR-LF 以外的换行符。如何告诉 sed 使用 CR-LF 作为换行符?谢谢。
指定-b保留 CR-LF 行结尾的选项。
-b
sed --help会告诉你:
sed --help
-b, --binary open files in binary mode (CR+LFs are not processed specially)