No MSYS Bash eu recebo:
$ cd ~
$ pwd
/c/Users/antonio
mas:
$ cd /
$ pwd
/
Posso obter o caminho absoluto completo do Windows no Bash?
Responder1
Em versões recentes, por exemploMSYS2, você pode usar:
~$ cygpath -w /
C:\path\to\root
ou com um estilo de caminho misto:
~$ cygpath -m /
C:/path/to/root
Da mesma forma, você pode usar:
~$ cygpath -w ~
C:\path\to\home
~$ cygpath -m ~
C:/path/to/home