在Linux终端中创建文件的最简单方法是什么?
根据您希望文件包含的内容:
touch /path/to/file
somecommand > /path/to/file 用于包含某些命令输出的文件。
somecommand > /path/to/file
eg: grep --help > randomtext.txt echo "This is some text" > randomtext.txt
nano /path/to/file或vi /path/to/file(或any other editor emacs,gedit etc) 它可以打开现有文件进行编辑,也可以创建并打开一个空文件以输入(如果不存在)
nano /path/to/file
vi /path/to/file
any other editor emacs,gedit etc