cygpath only works if the path presently exists
Brian Dessent
brian@dessent.net
Sat Mar 12 09:33:00 GMT 2005
"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/
More information about the Cygwin
mailing list