Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 574 Bytes

File metadata and controls

24 lines (18 loc) · 574 Bytes

The command line enables you to navigate the file system (much like Mac Finder or Windows Explorer) and run cli (command line interface) programs such as git, npm, create react app, etc.

Command line Cheat Sheet

#print working directory  
pwd 

#list files and directories (unix) 
ls -al
#list files and directories (dos)  
dir  

#change directory  
cd <dir_name>  

#go up a directory.  
cd ..