BTS

Message3768

Author ft
Recipients btittelbach
Date 2011-05-09.20:17:41
Content
Bernhard Tittelbach wrote:
> +    while [[ -n "$1"  ]]; do
> +      emulate -L zsh
> +      oggdec -o "$TMPFILE" $1
> +      lame -b 192 -v -h --replaygain-fast "$TMPFILE" ${1:r}.mp3
> +      shift
> +    done

How about

for i in *; do something-with $i; done

Instead of while $1...shift?

Regards, Frank
History
Date User Action Args
2011-05-09 20:17:41ftsetrecipients: + btittelbach
2011-05-09 20:17:41ftlinkissue982 messages
2011-05-09 20:17:41ftcreate