On Thu, May 9, 2013 at 6:33 AM, Byron Clark <[email protected]> wrote:
>
> I don't see where this is happening in the script, but this sounds like
> something is interpreting the track number as octal because it has a leading
> 0. 08 and 09 aren't valid octal values so the conversion would fail. I
This is the offending line that is interpreting the track as octal:
prettyTrack=`printf "%02d" $track`
Try this instead:
prettyTrack="00$track"
prettyTrack="${prettyTrack: -2}"
Phillip
--------------------
BYU Unix Users Group
http://uug.byu.edu/
The opinions expressed in this message are the responsibility of their
author. They are not endorsed by BYU, the BYU CS Department or BYU-UUG.
___________________________________________________________________
List Info (unsubscribe here): http://uug.byu.edu/mailman/listinfo/uug-list