Linux指令--unlink

unlink

unlink - 调用unlink函数删除指定的文件
这个函数和rm的用法几乎一模一样,唯一不一样的就是,它没有那么多的OPTION。

       --help display this help and exit

       --version
              output version information and exit

用法也和rm一样,

[root@localhost ~]# unlink temporary/test.*
[root@localhost ~]# cd temporary/
[root@localhost temporary]# ls
[root@localhost temporary]# 

C语言下的unlink函数作者不是太了解,后面再慢慢补充!


U!

你可能感兴趣的:(Linux指令记)