This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: cygpath only works if the path presently exists


"Wheeler, Frederick W (Research)" wrote:

> My real concern is converting this //nsk1prn02/c304_p to this \\nsk1prn02\c304_p.  This is a valid win2k printer path that I could pass to /cygdrive/c/WINNT/system32/print using the /D: option, but cygpath won't convert it.

I don't know if this helps in your situation but if you just want to
convert slashes you can use something like:

$ echo //nsk1prn02/c304_p | sed -e 's,/,\\,g'
\\nsk1prn02\c304_p

or perhaps something like

print /d:`echo $PRINTER | sed -e 's,/,\\,g'` `cygpath -w "$FILENAME"`

Brian

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]