我正在尝试查找所有名为“abc”,“qwe”,“asd”或“zcx”的文件。
find . -name "abc"|"qwe"|"asd"|"zcx"
这不正确吗?
答案 0 :(得分:4)
使用此:
find . -name "abc" -o -name "qwe" -o -name "asd" -o -name "zcx"
答案 1 :(得分:4)
试试这个:
find . -regex '.*/\(abc\|qwe\|asd\|zcx\)$'
注意:-regex
将匹配整个路径。