最新回答 / 王朋辉
find 命令是用来查找文件 。以-f 开头的参数如下: find / -false 查找系统中总是错误的文件 find / -fstype type 找存在于指定文件系统的文件,如type为ext2。如果你要查看ls命令的话,可以用下面这个命令:whatis ls 可以查看ls 这个命令的文件在哪个路径。man ls 可以查看这个命令的具体参数。
2016-10-20
find /root -name cangls -exec rm -rf {} \;
这个好用,swp那种隐藏文件能不能找到删除呢
这个好用,swp那种隐藏文件能不能找到删除呢
2016-10-19
非正常关闭updatedb.conf后出来swp文件,是隐藏文件
删除方法
cd /etc
ls -a
rm .updatedb.conf.swp
y
删除方法
cd /etc
ls -a
rm .updatedb.conf.swp
y
2016-10-19