Like this:
find /media/bard/repo0[1-3] -type f -name "*.flac" -exec rename 's/--/-/g' {} \;
Using a `glob`:
man bash | less +/'^ *Pattern Matching\s*$'
Like this:
find /media/bard/repo0[1-3] -type f -name "*.flac" -exec rename 's/--/-/g' {} \;
Using a `glob`:
man bash | less +/'^ *Pattern Matching\s*$'