#!/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) |