在DOS中创建带有echo的文件而不插入回车符

发布于 2024-10-31 17:54:45 字数 180 浏览 0 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

長街聽風 2024-11-07 17:54:45

试试这个: 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 (see help set). If you redirect the user input from nul it is happy to continue, redirecting its output to your foo.txt. The name of the variable to assign to is arbitrary (here noEOL).

七分※倦醒 2024-11-07 17:54:45
echo.|set /P ="hello" > foo.txt
echo.|set /P ="hello" > foo.txt
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文