我想在
下创建一个新文件
is/log directory
在linux中。
What is the unix command to create a new file ? I am using a putty Terminal .
答案 0 :(得分:1)
你可能会想到touch
。所以,如果我只想在某个路径中创建一个新文件:
$touch dir/subdir/foo.txt
如果你是Bourne纯粹主义者,你可以使用:
true > dir/subdir/foo.txt
这使用true
,这是shell的常规内置,就像无操作一样,将stdout重定向到隐式创建文件的文件。