문제

I want to find all files in a directory that match a given pattern say A and don't match a given pattern say B

What I've tried: Doing "ls -I B" gives me all files which match the pattern B. But I'm not getting any leads on how to do what I want to.

도움이 되었습니까?

해결책

You can use find . -name "pattern" and then add a negative condition for the pattern you don't want to have:

find . -name "pattern_A" ! -name "pattern_B"

Example

Let's look for those files whose name contains a A but not a B:

$ ls -1
adfadAadsa
adfBasdA
Aksjdflksj
asdfBasdf
Badsf

$ find . -name "*A*" ! -name "*B*"
./Aksjdflksj
./adfadAadsa
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top