Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
典型的な解決策 ( echo.>filename) は、私のシナリオでは受け入れられません (問題の回避)。他のオプションはありますか?
echo.>filename
copy NUL test.txt /Y
/Y 既存の宛先ファイルを上書きするかどうかを確認するプロンプトを抑制します。
touchコマンドを使用
touch
$ touch newfile.txt $ ls newfile.txt -rw-r--r-- 1 myuser mygroup 0 Dec 15 15:56 newfile.txt