This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
unlink
===
系统调用函数unlink去删除指定的文件
## 补充说明
**unlink命令** 用于系统调用函数unlink去删除指定的文件。和rm命令作用一样,都是删除文件。
### 语法
```
unlink(选项)(参数)
### 选项
--help:显示帮助;
--version:显示版本号。
### 参数
文件:指定要删除的文件。
<!-- Linux命令行搜索引擎:https://jaywcjlove.github.io/linux-command/ -->