【Windows】空のファイルを作成する(Linuxで言うtouch)
問題
Linuxのtouchみたいに、Windowsで空のファイルを作りたい。
答え
Linuxで言う /dev/null に相当するものが、Windowsでは nul らしく、以下のコマンドで、空のファイルが生成できる。
copy nul foo.txt
type nul > foo.txt
Linuxのtouchみたいに、Windowsで空のファイルを作りたい。
Linuxで言う /dev/null に相当するものが、Windowsでは nul らしく、以下のコマンドで、空のファイルが生成できる。
copy nul foo.txt
type nul > foo.txt
コメント