了解查找中的转义括号

时间:2014-06-21 06:01:59

标签: bash shell find quoting

我拼凑了下面的内容,似乎有效,可能除了“!-empty”。我正在学习的一件事(就像我去的那样)只是因为某些东西起作用,并不意味着它是正确的或正确形成的...我的问题是你如何确定需要括号的内容和查找中的内容命令?

在OS X中, - 并且是“两个表达式的并置暗示它不必指定”

我的目标是找到: 找到超过5分钟但不是空的目录,而不是.dot(隐藏-i.e。“。”和“..”)

count="$( find . -type d -mmin +5 \! -empty \( ! -iname ".*" \) | wc -l )"
echo $count
if [ "$count" -gt 0 ] ; then
    echo $(date +"%r") "$cust_name loc 9: "${count}" directories exist to process, moving them" >> $logFILE
    find . -type d -mmin +5 \! -empty \( ! -iname ".*" \) | xargs -I % mv % ../02_processing/

    cd $processingPATH

    # append the time and the directories to be processed in files_sent.txt
    date +"---- %a-%b-%d %H:%M ----" >> $filesSENTlog
    ls >> $filesSENTlog

    find . -type f -print0 | xargs -0 /usr/local/dcm4che-2.0.28/bin/dcmsnd $aet@$peer:$port
    echo $(date +"%r") "$cust_name loc 10: Processing ${count} items..." >> $logFILE

    # clean up processed studies > from processing to processed
    echo $(date +"%r") "$cust_name loc 11: Moving ${count} items to 03_processed" >> $logFILE
    mv * $processedPATH
else
    echo $(date +"%r") "$cust_name loc 12: there are no directories to process" >> $logFILE
fi
我可以这样做:

find . -type d -mmin +5 \! -empty \! -iname ".*"

?或者由于某种原因这是不正确的?

1 个答案:

答案 0 :(得分:8)

find按优先顺序列出以下运算符(最高 - >最低)

  1. ()
  2. !|-not
  3. -a|-and
  4. -o|-or
  5. ,(仅限GNU
  6. 注意:所有testsactions都有隐含的-a相互关联

    因此,如果您不使用任何运算符,则不必担心优先级。如果你只是在你的情况下使用not,你也不必担心优先级,因为! exp exp2将被视为(! exp) AND (exp2),因为{{1优先级高于隐含的!

    优先事项的例子

    and

    上述内容被视为> mkdir empty && cd empty && touch a && mkdir b > find -mindepth 1 -type f -name 'a' -or -name 'b' ./a ./b

    find -mindepth 1 (-type f AND -name 'a') OR (-name 'b')

    上述内容被视为> find -mindepth 1 -type f \( -name 'a' -or -name 'b' \) ./a

    注意:选项(即-mindepth,-noleaf等等)始终为真

    <强>结论

    find -mindepth 1 (-type f) AND ( -name 'a' OR -name 'b')的以下两种用法完全相同

    • find
    • find . -type d -mmin +5 \! -empty \( ! -iname ".*" \) | wc -l

    两者都被视为

    • find . -type d -mmin +5 \! -empty \! -iname ".*" | wc -l