Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Browsing Folders in MSYS

Tags:

bash

msys

This will be the toughest question of the day. How do I navigate through my Windows folder structure within the MSYS shell? When I start the shell, all I see is a '~'. I type 'ls' and the folder is empty. I just want to know how to get to my c drive.

like image 335
AndroidDev Avatar asked Jul 07 '12 16:07

AndroidDev


People also ask

Where are msys2 files?

MinGW/MSYS usually creates a home folder under C:/MinGW/msys/1.0/home/user if you installed them as usual (accepting the defaults) and you executed msys.


1 Answers

cd /c/ to access C:

cd /d/ for D:

etc.

like image 145
GL770 Avatar answered Oct 10 '22 10:10

GL770