如何使用 Perl 将文件格式从 Unix 更改为 DOS?
基本上我想将文件格式从 Unix 更改为 DOS。有没有办法用 Perl 来做到这一点?多谢!
Basically I want to change my file format from Unix to DOS. Is there any way to do it in Perl? Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
dos2unix
/unix2dos
命令行工具相互转换格式。在
vim
中,这也很简单。您可以读取 DOS 格式的文件并以 Unix 格式写入。这将
将所有
对替换为
(假设“fileformats”包括“dos”):>如果你读取Unix格式的文件并使用DOS格式写入,所有
字符将被替换为
(假设 'fileformats' 包括“unix”):>
You can use
dos2unix
/unix2dos
commandline tools convert format to each other.In
vim
, also it's simple.You can read a file in DOS format and write it in Unix format. This will
replace all
<CR><NL>
pairs by<NL>
(assuming 'fileformats' includes "dos"): >If you read a file in Unix format and write with DOS format, all
<NL>
characters will be replaced with
<CR><NL>
(assuming 'fileformats' includes"unix"): >