本文介绍了在DOS中创建带有回显的文件而无需插入回车符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在DOS中的CIFS挂载上创建一个新文件。如果我愿意的话。

I want to create a new file on my CIFS mount in DOS. If I do..

echo hello > foo.txt

hello末尾会有一个CR。如何使用echo在DOS cmd上创建文件,并且没有自动附加CR。

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.

推荐答案

echo.|set /P ="hello" > foo.txt

这篇关于在DOS中创建带有回显的文件而无需插入回车符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 13:14