← Back to team overview

sslug-teknik team mailing list archive

Re: Normalize

 

Jesper Krogh skrev Den. 06-05-2007 08:17:
> I sslug.teknik, skrev Gert Holtoft:
>>  gert@dulle:~/Desktop/musik> normalize -b *.mp3
>>  bash: /usr/bin/normalize: Argumentlisten er for lang
> 
> for i in $(ls | egrep '\.mp4' ); do normalize -b $i; done

Et andet bud, hvis man må bruge find/xargs
find . -name "*mp3" -print0 | xargs -0 normalize -b


-- 
Mvh
Dennis Hansen


Follow ups

References