Re: cygwin -> mswindows pathname conversion under cygwin perl?
| Newsgroups | gmane.emacs.xemacs.windows |
|---|---|
| Message-ID | <[email protected]> |
In a message dated 2/28/2003 8:23:36 PM Eastern Standard Time, [email protected] writes: > andy [or someone else], is there a way to convert pathnames to mswindows > format > in a cygwin perl script? > My perl's too rusty, but in bash you'd just say: winformat=`cygpath -w $unixformat` or, more likely: winformat=`cygpath -m $unixformat`