1

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

4

3 回答 3

1
copy NUL test.txt /Y

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

于 2013-09-26T10:48:56.590 回答
0

使用touch命令

$ touch newfile.txt
$ ls newfile.txt
-rw-r--r--    1 myuser mygroup          0 Dec 15 15:56 newfile.txt
于 2013-12-15T15:00:08.973 回答
-1
type nul > "filename here.txt"
于 2013-09-26T10:47:50.953 回答