01. 查看所有文件,不包括目录
find . -type f
02. 查找到对应文件后,执行操作
find /etc/aio/ -name "oki_aio_*" -exec ls -t '{}' + ##find命令查找后的全部结果统一执行ls -t命令
find /etc/aio/ -name "oki_aio_*" -exec ls -t {} ; ##find命令查找后的每个结果单独执行ls -t命令,且后续不能再接其他命令