vote up 1 vote down star

I have a variable that stores a Unix path, for example:

typeset unixpath=/foo/bar/

And I have to convert it to a DOS path using Korn shell scripting:

dospath=\\foo\\bar\\

flag

3 Answers

vote up 2 vote down check

Try:

dospath=`echo $unixpath | sed 's/\//\\\\/g'`

Thanks to David Wolever for reminding me to use a $ to access the value of the variable!

link|flag
I'm no korn expert, but I think that needs a '$' somewhere... Anyway, that's exactly how I'd do it, if you hadn't posted first. – David Wolever Mar 13 at 12:58
It depends whether eleven81 meant: echo /unix/path or echo $unixpath; either could be valid. – Jonathan Leffler Mar 13 at 13:04
vote up 0 vote down

I would have added as a comment to eleven81's answer, but I don't have the points

to make it slightly more readable, how about using an alternative sed delimiter

i.e.

dospath=`echo $unixpath | sed 's./.\\\\.g'`
link|flag
vote up 0 vote down

If you have ksh93:

ksh-M 93t 2008-11-04$ unixpath=/foo/bar/            
ksh-M 93t 2008-11-04$ print ${unixpath//\//\\\\\\\\}
\\foo\\bar\\
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.