当前位置: 技术问答>linux和unix
unix删除文件删不掉
来源: 互联网 发布时间:2015-09-12
本文导语: 我是个unix新手,用turbolinux遇到一问题,请教各位 我想删掉一个名为“test”,用rm命令却怎么也删不掉,请各位指教,谢谢! 错误信息如下: [root@turbo /root]# ls -l total 12 -rw-r--r-- 1 root root ...
我是个unix新手,用turbolinux遇到一问题,请教各位
我想删掉一个名为“test”,用rm命令却怎么也删不掉,请各位指教,谢谢!
错误信息如下:
[root@turbo /root]# ls -l
total 12
-rw-r--r-- 1 root root 0 Mar 8 13:30 collectdiag.tar
-rw-r--r-- 1 root root 10669 Mar 8 16:27 test
[root@turbo /root]# rm test
>
rm: cannot remove `test': No such file or directory
我想删掉一个名为“test”,用rm命令却怎么也删不掉,请各位指教,谢谢!
错误信息如下:
[root@turbo /root]# ls -l
total 12
-rw-r--r-- 1 root root 0 Mar 8 13:30 collectdiag.tar
-rw-r--r-- 1 root root 10669 Mar 8 16:27 test
[root@turbo /root]# rm test
>
rm: cannot remove `test': No such file or directory
|
你应该这样删除:
rm -f test\
其中的‘’是个特殊字符,要用反斜杠转义一下。
rm -f test\
其中的‘’是个特殊字符,要用反斜杠转义一下。
|
rm test\
|
幸虧沒有test文件如果有肯定讓你rm test給誤刪除了