Hi,
Here is a simple snippet I’ve put in my WSL .bashrc file to rapidly reach Windows paths when on Bash for Windows.
1 | |
Place it in your .bashrc, then you can type cdw 'C:\What\Ever\Path' and you will reach /mnt/c/What/Ever/Path.
Hint:
You can use the command echo $winpath | sed -e 's/\\$//g' -e 's/C\:/\/mnt\/c/g' -e 's/\\/\//g' alone to translate the Windows path into the corresponding WSL path in your scripts.