我尝试使用变量在find
命令中指定排除路径。
此代码段有效:
x="*test/.util/*"
y="*test/sh/*"
find test -type f -name "*.sh" -not -path "$x" -not -path "$y"
但我想将-not -path
移到变量中,如:
x="-not -path *test/.util/*"
y="-not -path *test/sh/*"
# error: find: -not -path *test/.util/*: unknown primary or operator
find test -type f -name "*.sh" "$x" "$y"
# Tried removing quotes
# error: find: test/.util/foo.sh: unknown primary or operator
find test -type f -name "*.sh" $x $y
我还尝试在变量中的路径中添加引号,但这不会导致路径过滤。
# no syntax error but does not exclude the paths
x="-not -path '*test/.util/*'"
y="-not -path '*test/sh/*'"
我正在使用OSX Mavericks; GNU bash,版本3.2.51(1)-release(x86_64-apple-darwin13)。
我做错了什么?感谢
答案 0 :(得分:5)
find
正在接收-not -path *test/.util/*
作为单个参数,而不是它需要的3个单独参数。您可以改为使用数组。
x=(-not -path "*test/.util/*")
y=(-not -path "*test/sh/*")
find test -type f -name "*.sh" "${x[@]}" "${y[@]}"
引用时,${x[@]}
扩展为一系列单独的单词,每个数组元素一个,并且每个单词保持正确引用,因此模式按字面意思传递给find
。