This commit is contained in:
nick 2018-05-28 18:18:30 +08:00
parent ecded61557
commit 244916ab8f
2 changed files with 7 additions and 1 deletions

View File

@ -57,7 +57,7 @@
## 插件工具
* [工具](tool.md)
## Shell 脚本
## Shell 脚本相关命令
* [Shell](shell.md)
## 实用 shell 例子

View File

@ -54,6 +54,12 @@ rm -f test #强制删除目录
rm -rf php #强制递归删除目录
```
#### unlink
```
unlink demo.php #删除文件,与 rm 类似,但只能删除文件
```
#### tree 命令
```