zoukankan      html  css  js  c++  java
  • find

    find start_directory test options criteria_to_match action_to_perform_on_results

    -perm mode:文件许可正好符合mode

    -perm +mode:文件许可部分符合mode

    -perm -mode:文件许可至少符合mode

    忽略某个目录:

    如果在查找文件时希望忽略某个目录,那么可以使用-prune选项来指出需要忽略的目录。在使用-prune选项时要当心,因为如果你同时使用了-depth选项,那么-prune选项就会被find命令忽略。

    例如:在/apps目录下查找文件,而不再/apps/bin目录下查找,可以用:

    find /apps -path "/apps/bin" -prune -o -print

    find ./ -path ./out -prune -o -name *AudioSystem.* -print
    注意是"./out" 而非 "out"

    -path 只是匹配find出来的路径,可以通过使用匹配符号* [] ?

    避开数个文件夹:

    find /usr/sam \(-path /usr/sam/dir1 -o -path /usr/sam/file1 \) -prune -o print

    查找某一确定文件: -name 等选项加在 -o 子后

    find /usr/sam \( -path /usr/sam/dir1 -o -path /usr/sam/file1 \) -prune -o -name "temp" -print

    指定多个起始目录:

    find /usr/home   /tmp  -name "*.c"

    查找大于 10MB 的所有文件

    find / ­size +10000k –xdev –exec ls –lh {}\;

    The following command finds all the files not modified in the last 60 days
    
    under /home/jsmith directory and creates an archive files under /tmp in the
    
    format of ddmmyyyy_archive.tar.
    
    # find /home/jsmith -type f -mtime +60 | xargs tar -cvf
    
    /tmp/`date '+%d%m%Y'_archive.tar` 
  • 相关阅读:
    linux之awk命令
    HDU 2097 Sky数 进制转换
    HDU 2077 汉诺塔IV
    HDU 2094 产生冠军 dfs加map容器
    HDU 2073 叠框
    HDU 2083 简易版之最短距离
    HDU 2063 过山车 二分匹配
    天梯 1014 装箱问题
    天梯 1214 线段覆盖
    天梯 1098 均分纸牌
  • 原文地址:https://www.cnblogs.com/openix/p/2917429.html
Copyright © 2011-2022 走看看