如何创建带有 dos 换行符的文件?
我正在编写一个脚本来检查 unix 环境中的 dos 换行符。但是,我没有样本来检查我的测试用例。我该如何创建一个?
I'm writing a script to check for dos line breaks, in a unix environment. however, I dont have a sample to check my test cases. How do I create one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
加载 Vim,写入几行文本,然后:
如果要验证生成的文件是否包含 CRLF,请使用 hexdump -C 。
Load Vim, write a few lines of text, then:
Use
hexdump -C
if you want to verify that the resulting file does contain CRLF.或者
或者有一个像这样的程序,
数据输出必须是数据的两倍,以防万一。
只需告诉您的文本编辑器执行此操作,打开文件,然后保存或更改该文件的格式后另存为就容易得多。基于 scintilla 的编辑器、scite、geany、notepad++ 都没有问题(geany 使逐个文档的处理变得非常容易)。看起来像 vi,也许 emacs 也可以工作。文本板没问题。
or
or have a program like this
dataout has to be twice as big as datain just in case.
it is far easier just to tell your text editor to do it, open the file then save or save as after changing the format for that file. The scintilla based editors, scite, geany, notepad++, have no problem with it (geany makes it very easy on a document by document basis). looks like vi and probably emacs will work. Textpad no problem.