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\\
|
|
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\\
|
|||
|
|
|
|
Try:
Thanks to David Wolever for reminding me to use a $ to access the value of the variable! |
||||
|
|
|
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.
|
||
|
|
|
|
If you have ksh93:
|
||
|
|