linux文件名过长无法删除,linux下 怎样删除文件名中包含特殊字符的文件

目录中无意间出现了 -- 这个文件

[root@dev tmp]# ls

-- 00 01 02 03 04 05 06 07 08 09

[root@dev tmp]# ll

total 0

-rw-r--r-- 1 root root 0 Oct 23 15:31 --

-rw-r--r-- 1 root root 0 Oct 23 15:37 00

-rw-r--r-- 1 root root 0 Oct 23 15:37 01

-rw-r--r-- 1 root root 0 Oct 23 15:37 02

-rw-r--r-- 1 root root 0 Oct 23 15:37 03

-rw-r--r-- 1 root root 0 Oct 23 15:37 04

-rw-r--r-- 1 root root 0 Oct 23 15:37 05

-rw-r--r-- 1 root root 0 Oct 23 15:37 06

-rw-r--r-- 1 root root 0 Oct 23 15:37 07

-rw-r--r-- 1 root root 0 Oct 23 15:37 08

-rw-r--r-- 1 root root 0 Oct 23 15:37 09

怎么删都无法删除

[root@dev tmp]# rm -rf *

[root@dev tmp]# ll

total 0

-rw-r--r-- 1 root root 0 Oct 23 15:31 --

甚至是rm -rf

[root@dev tmp]# rm -rf \-\- && ll

total 0

-rw-r--r-- 1 root root 0 Oct 23 15:31 --

[root@dev tmp]# rm -rf \\-\\- && ll

total 0

-rw-r--r-- 1 root root 0 Oct 23 15:31 --

[root@dev tmp]# mv -- xx

mv: missing destination file operand after `xx'

Try `mv --help' for more information.

[root@dev tmp]# mv \-\- xx

mv: missing destination file operand after `xx'

Try `mv --help' for more information.

为什么这样的字符无法删掉、rm命令是怎么处理的?


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部