will it make sense to resolve the windows environment variables (enclosed in %) for paths in the msys2 shell?
this will make the windows environment variables like %localappdata% and others to work.
these are supported in windows stuff like windows explorer, cmd (but surprisingly, not in powershell)
i was thinking of using like this:
$ mv %userprofile%/some-file /d/my-dir
currently these variables are not resolved and error is shown: bash: cd: %localappdata%: No such file or directory
will it make sense to resolve the windows environment variables (enclosed in %) for paths in the msys2 shell?
this will make the windows environment variables like
%localappdata%and others to work.these are supported in windows stuff like windows explorer,
cmd(but surprisingly, not inpowershell)i was thinking of using like this:
$ cd %localappdata%$ mv %userprofile%/some-file /d/my-dircurrently these variables are not resolved and error is shown:
bash: cd: %localappdata%: No such file or directory