在Linux终端上创建文件最简单的方法是什么?


当前回答

根据你想要文件包含的内容:

触摸/path/to/file为空文件 somecommand > /path/to/file用于指定包含某命令输出的文件。 示例:grep—help > randomtext.txt echo "This is some text" > randomtext.txt Nano /path/to/file或vi /path/to/file(或任何其他编辑器emacs,gedit等) 它要么打开现有文件进行编辑,要么创建并打开空文件进入,如果它不存在的话

其他回答

1号方法

echo -n > filename.txt

2方法

> filename.txt

第三个方法

touch filename.txt

命令,查看文件内容

vi filename.txt

您可以使用touch命令创建一个新的空文件。

http://linux.about.com/library/cmd/blcmdl_touch.htm

这是最简单快捷的方法之一

$ vim filename

根据你想要文件包含的内容:

触摸/path/to/file为空文件 somecommand > /path/to/file用于指定包含某命令输出的文件。 示例:grep—help > randomtext.txt echo "This is some text" > randomtext.txt Nano /path/to/file或vi /path/to/file(或任何其他编辑器emacs,gedit等) 它要么打开现有文件进行编辑,要么创建并打开空文件进入,如果它不存在的话

touch filename

对于权限被拒绝的错误,使用sudo命令如下:

sudo touch filename