Definition: Created by John Gruber in 2004, Markdown is simply a lightweight language used to add formatting to plaintext text documents. You can add syntax to the text to indicate which words and phrases will look different, unlike a WYSIWYG editor.
pwd
Print Working Directory - ie. Where are we currently.
ls
List the contents of a directory
cd
Change Directories - ie. Move to another directory.
mkdir
Create Directory
touch
Used to create plain files
See below explanation for how these commands and arguments are entered into the command line?
cd projects
: You moving into the projects foldermkdir new-project
: You are creating a “New Project” foldertouch new-project/newfile.md
: You are creating a “New Project” Filecd ..
: You are moving backwardsls projects/new-project
: You are listing folders within the new-project folderRead