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