在 MSYS Bash 中打印根路径的 Windows 映射

在 MSYS Bash 中打印根路径的 Windows 映射

在 MSYS Bash 中我得到:

$ cd ~             
$ pwd              
/c/Users/antonio 

但:

$ cd / 
$ pwd              
/

我可以从 Bash 获取完整的 Windows 绝对路径吗?

答案1

在最近的版本中,例如管理系统2, 您可以使用:

~$  cygpath -w /
C:\path\to\root

或者使用混合路径样式:

~$  cygpath -m /
C:/path/to/root

类似地,您可以使用:

~$  cygpath -w ~
C:\path\to\home
~$  cygpath -m ~
C:/path/to/home

相关内容