码迷,mamicode.com
首页 > 系统相关 > 详细

shell练习-对指定目录下的符合条件的文件执行操作

时间:2016-08-26 23:05:53      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:shell

编写个shell脚本将当前目录下大于10K的文件,然后删除

#!/bin/bash

#author: liqilong

#date: 2016-08-26

#Decs: find the file (if they more than 10K)and remove them .


for Filename in `ls -l|awk ‘$5 > 10240 {print $9}‘`

do

  rm -rf $Filename 

done


echo "OK!"




shell练习-对指定目录下的符合条件的文件执行操作

标签:shell

原文地址:http://liqilong2010.blog.51cto.com/3029053/1843025

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!