linux创建txt文件
时间: 2023-04-29 21:03:34 浏览: 84
在 Linux 终端中创建一个文本文件可以使用以下方法之一:
1. 使用 `touch` 命令,例如:`touch test.txt`。
2. 使用 `echo` 命令,例如:`echo "Hello, World!" > test.txt`。
3. 使用文本编辑器,例如:`nano test.txt`。
4. `vi` or `vim` `vi test.txt`
你可以选择上面的命令之一来创建文本文件,或者使用自己熟悉的其他方法。
阅读全文