在DOS中创建带有echo的文件而不插入回车符
我想在 DOS 中的 CIFS 挂载上创建一个新文件。如果我这样做..
echo hello > foo.txt
hello 末尾将会有一个 CR。如何使用 echo 在 DOS cmd 中创建文件而不自动附加 CR。它导致 samba 和我的 CIFS 安装出现问题。
I want to create a new file on my CIFS mount in DOS. If I do..
echo hello > foo.txt
There is going to be a CR at the end of hello. How can I create a file at the DOS cmd using echo and not have a CR automatically appended. It is causing problems with samba and my CIFS mount.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
set /p "noEOL=hello"foo.txt
set /p
输出等号后面的内容以提示用户输入(请参阅帮助设置
)。如果您从nul
重定向用户输入,它很乐意继续,并将其输出重定向到您的 foo.txt。要分配的变量名称是任意的(此处为noEOL
)。Try this:
set /p "noEOL=hello" <nul >foo.txt
set /p
outputs what comes after the equal sign to prompt the user for input (seehelp set
). If you redirect the user input fromnul
it is happy to continue, redirecting its output to your foo.txt. The name of the variable to assign to is arbitrary (herenoEOL
).