Chinaunix首页 | 论坛 | 博客
  • 博客访问: 402358
  • 博文数量: 199
  • 博客积分: 154
  • 博客等级: 入伍新兵
  • 技术积分: 1530
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-14 08:43
文章分类

全部博文(199)

文章存档

2015年(101)

2014年(97)

2011年(1)

分类: LINUX

2015-06-30 19:18:35

#!/bin/bash

find . -maxdepth 1 -name "*py" -print
find . -type d -print       #目录  
find . -type f -print       #文件
find . -type f -atime -7 -print  #7天内
find . -type f -atime 7 -print   #7天前
find . -type f -atime +7 -print  #超过7天
find . -type f -amin +7 -print  #超过7分
find . -type f -size +2k      #大于2k
阅读(919) | 评论(0) | 转发(0) |
0

上一篇:IFS

下一篇:统计C行数

给主人留下些什么吧!~~