Re: [Hampshire] Re: Handling Volume Labels with Spaces

Αρχική Σελίδα

Reply to this message
Συντάκτης: Stuart Sears
Ημερομηνία:  
Προς: stephen.davies, Hampshire LUG Discussion List
Υ/ο: 
Αντικείμενο: Re: [Hampshire] Re: Handling Volume Labels with Spaces
Stephen Davies wrote:
[...]
> ----------------------
> My only question is why does the delimiter get swapped round eg
> /media/disk\2008-Feb-15_16_03_57


because you told it to, here:
printf " %s\%s" $output_vol2 $copy_date

try using

printf " %s/%s" $output_vol2 $copy_dat


Regards,

Stuart