find 명령 및 여러 상위 디렉토리 트리

find 명령 및 여러 상위 디렉토리 트리

세 개의 다른 디렉토리 트리에서 find 명령을 사용하고 싶습니다.

현재 각 상위 디렉토리에서 작업 중입니다..

find . -type f -name "*.flac" -exec rename 's/--/-/g' {} \;

세 개의 디렉토리에 대한 조회를 적용하려고 합니다 /media/bard/repo01/./media/bard/repo02//media/bard/repo03/

답변1

이와 같이:

find /media/bard/repo0[1-3] -type f -name "*.flac" -exec rename 's/--/-/g' {} \;

다음 중 하나를 사용하세요 glob.

man bash | less +/'^ *Pattern Matching\s*$'

관련 정보