如何在没有重定向或外部工具的情况下从命令行创建文件?

时间:2013-09-26 10:42:37

标签: windows shell command-line windows-7

典型的解决方案(echo.>filename)在我的方案中是不可接受的(转义问题)。还有其他选择吗?

3 个答案:

答案 0 :(得分:1)

copy NUL test.txt /Y

/ Y禁止提示您确认是否要覆盖                现有的目标文件。

答案 1 :(得分:0)

type nul > "filename here.txt"

答案 2 :(得分:0)

使用touch命令

$ touch newfile.txt
$ ls newfile.txt
-rw-r--r--    1 myuser mygroup          0 Dec 15 15:56 newfile.txt