A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
-bash: unlink command not found #Debian apt-get install coreutils #Ubuntu apt-get install coreutils #Alpine apk add coreutils #Arch Linux pacman -S coreutils #Kali Linux apt-get install coreutils #CentOS yum install coreutils #Fedora dnf install coreutils #OS X brew install coreutils #Raspbian apt-get install coreutils #Docker docker run cmd.cat/unlink unlink
unlink 命令用于系统调用函数 unlink 去删除指定的文件。和 rm 命令作用一样,都是删除文件。
unlink FILE unlink OPTION
--help:显示帮助; --version:显示版本号。
文件:指定要删除的文件。
删除文件名 command_not_found.txt
,如果没有其他指向文件数据的硬链接,则文件数据本身将从系统中删除。
$ unlink command_not_found.txt