Cygwin convert windows path to linux path: Difference between revisions
Jump to navigation
Jump to search
m
Text replacement - "== reference ==" to "== References =="
mNo edit summary |
m (Text replacement - "== reference ==" to "== References ==") |
||
| (3 intermediate revisions by one other user not shown) | |||
| Line 9: | Line 9: | ||
local directory e.g. {{kbd | key=<nowiki>c:\Program Files\</nowiki>}} | local directory e.g. {{kbd | key=<nowiki>c:\Program Files\</nowiki>}} | ||
<pre> | <pre> | ||
enclose the whole path with single quote symbol | |||
$ cygpath -u 'c:\Users\User\Desktop\' | $ cygpath -u 'c:\Users\User\Desktop\' | ||
/cygdrive/c/Users/User/Desktop/ | /cygdrive/c/Users/User/Desktop/ | ||
$ cygpath -u 'c:\Program Files\' | $ cygpath -u 'c:\Program Files\' | ||
/cygdrive/c/Program Files/ | /cygdrive/c/Program Files/ | ||
| Line 19: | Line 19: | ||
remote directory (network drive) e.g. {{kbd | key=<nowiki>\\remote\test path\</nowiki>}} | remote directory (network drive) e.g. {{kbd | key=<nowiki>\\remote\test path\</nowiki>}} | ||
<pre> | <pre> | ||
enclose the whole path with single quote symbol | |||
//method1 | //method1 | ||
$ cygpath -u '\\remote\test path\' | $ cygpath -u '\\remote\test path\' | ||
//remote/test path/ | //remote/test path/ | ||
//method2 | //method2: replace backward slash with forward slash | ||
$ path = '\\remote\path\' | $ path = '\\remote\path\' | ||
$ echo "${path//\\//}" | $ echo "${path//\\//}" | ||
| Line 79: | Line 79: | ||
</pre> | </pre> | ||
== | == References == | ||
* [http://cygwin-lite.sourceforge.net/html/cygpath.html Cygwin Utilities: cygpath] | * [http://cygwin-lite.sourceforge.net/html/cygpath.html Cygwin Utilities: cygpath] | ||
* [http://superuser.com/questions/885700/cygwin-convert-windows-path-to-unix-then-change-dir/1068015#1068015 Cygwin convert windows path to unix then change dir - Super User] | * [http://superuser.com/questions/885700/cygwin-convert-windows-path-to-unix-then-change-dir/1068015#1068015 Cygwin convert windows path to unix then change dir - Super User] | ||