you might have to split it in half before you can do that.
lets say your getting your info from "file" if its a field then just use the echo command.
cat file | awk '{ print substr($0, 1, 12) }' > 1half
cat file | awk '{ print substr($0, 13, 40) }' > 2half
echo $1half | sed "s/-//" > final
complete=`echo "$(final)$(2half)"`
or
echo $1half | awk -F- '(printf ($1, $2, $3))' > final
complete=`echo "$(final)$(2half)"`
i think that might work.
there is probably an easier way to do it but thats all i can think of right now.
if you need my help again then i'm on MSN (elf_psyrex@hotmail.com)