Linux磁盘满了处理命令
摘要:Linux磁盘满了处理命令
bsh代码
1、linux 下查找大于10M的文件 find . -type f -size +10000k 2、删除所有空目录 find /data -type d -empty -exec rm -rf {} \; 3、linux下批量删除空文件(大小等于0的文件)的方法 find /data -type f -size 0c -exec rm -rf {} \; find /data -type f -size 0c|xargs rm –f 4、删除五天前的文件 find /data -mtime +5 -type f -exec rm -rf {} \; 5、删除两个文件重复的部份,打印其它 cat 1.txt 3.txt |sort |uniq 安装:rpm -ivh gcc-c++-4.1.1-52.el5.x86_64.rpm 删除:rpm -e gcc-c++-4.1.2-44.el5 --nodeps 查看安装包:rpm -q gcc-c++
相关文章
最新发布
阅读排行
热门文章
猜你喜欢