|
|
发表于 2005-1-6 21:59:44
|
显示全部楼层
我用起来很正常阿?
[root@MyLFS tmp]#ls
t1.1 t2.1 t3.1
[root@MyLFS tmp]#rm *.*
rm: remove regular empty file `t1.1'? n
rm: remove regular empty file `t2.1'? n
rm: remove regular empty file `t3.1'? n
[root@MyLFS tmp]#rm .*
rm: cannot remove `.' or `..'
rm: cannot remove `.' or `..'
[root@MyLFS tmp]#rm *.
rm: cannot lstat `*.': No such file or directory
看来*.* 好象匹配不到..
不知道*是怎么匹配的 :ask :ask |
|