unlink删除一个LIST的文件,并返回成功删除的文件数量。如果失败,则返回 false 并设置$!为错误号(errno).
unlink LIST
my $unlinked = unlink 'a', 'b', 'c'; unlink @files; unlink glob "*.pl";