更新一部分linux笔记,删除了密码本

This commit is contained in:
2026-06-21 18:31:21 +08:00
parent 3d067fe75c
commit 69d4197074
14 changed files with 147 additions and 8 deletions
@@ -0,0 +1,22 @@
# touch \[路径]
作用:创建文件
示例:
touch test.txt
# cat \[文件]
作用:查看文件
示例:
cat ./test.txt
# more \[文件]
作用:查看文件
与cat的不同:文件过长时可以翻页,cat只能一次性打印
按q退出
示例
more ./test.txt