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.
#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 ..