#!/bin/bash
:<<eof
find [path] [option] [operation]
find path
options
-mtime +/-5
-user
-group -size +/-12M
-name '*.conf'
-perm 664
-type f/d/c/b/l/p
-prune
-mindepth n
-maxdepth n
operation
-exec command {} \;
-print
eof
# 命令出错会停止执行
set -e
# 打印每条执行的命令
set -x
set +x
shell编程代码模板-进阶版-find
最新推荐文章于 2024-11-01 18:23:17 发布