Cygwin convert windows path to linux path: Difference between revisions
Jump to navigation
Jump to search
| 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\' | ||
| Line 24: | Line 25: | ||
//method2 | //method2 | ||
$ path = '\\remote\path\' | $ path = '\\remote\path\' | ||
$ echo "${path//\\//}" | $ echo "${path//\\//}" | ||
Revision as of 14:54, 22 May 2019
Using Cygwin Utilities: cygpath to convert windows path ↔ to linux path
steps
- launch cygwin
- input the following commands after $ symbol
convert windows path to linux path
local directory e.g. c:\Program Files\
enclose the whole path with single quote symbol $ cygpath -u 'c:\Users\User\Desktop\' /cygdrive/c/Users/User/Desktop/ $ cygpath -u 'c:\Program Files\' /cygdrive/c/Program Files/
remote directory (network drive) e.g. \\remote\test path\
enclose the whole path with single quote symbol
//method1
$ cygpath -u '\\remote\test path\'
//remote/test path/
//method2
$ path = '\\remote\path\'
$ echo "${path//\\//}"
//remote/path/
$ path = '\\remote\test path\'
$ echo "${path//\\//}"
//remote/test path/
switch to the specified local directory
//method1 $ cd "$(cygpath -u 'c:\Program Files\')" $ pwd /cygdrive/c/Program Files //method2 $ cygpath -u 'c:\Program Files\' /cygdrive/c/Program Files/ copy the above path & paste to the console $ cd /cygdrive/c/Program Files/ $ pwd /cygdrive/c/Program Files
troubleshooting
enclose the whole path with single quote symbols ex: cygpath -u 'c:\Program Files\' if the path contains spaces $ cygpath -u c:\Program Files\ met error, press ctrl+c to escape enclose with double quote symbols after cd command ex: cd "$(cygpath -u 'c:\Program Files\')" if the path contains spaces $ cd $(cygpath -u 'c:\Program Files\') -bash: cd: /cygdrive/c/Program: No such file or directory $ cd '$(cygpath -u 'c:\Program Files\')' -bash: syntax error near unexpected token `)'
convert linux path to windows path
local directory
$ cygpath -w '/cygdrive/c/Program Files/' c:\Program Files\
remote directory (network drive)
$ cygpath -w '//remote/test path/' \\remote\test path\