在 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