Intro to
Presented by Lauren Pittenger / @laurenpittenger
A way for us to tell programs what to do through sequential lines of text called commands, as opposed to using the mouse to point and click
For one, the command line is the only place you can run all Git commands – most of the GUIs only implement some subset of Git functionality for simplicity.
Applications › Utilities › Terminal
Start › All Programs › Accessories › Command Prompt
~ represents the user's home folder
pwd
ls
cd
Go home
Go one directory up from current directory
Go to root
Tab to Autocomplete
Up arrow key to scroll through commands previously entered
rm filename
Permanently delete a file immediately
Does not go to Trash
rmdir directoryname
Permanently delete a folder immediately
Does not go to Trash
help
Access user manual
cd ~/Desktop
Navigate to Desktop
mkdir mynewdirectory
Create new directory
cd mynewdirectory
Enter new directory
pwd
Check your current location
Download WordPress
curl -O https://wordpress.org/latest.zip
unzip latest.zip
Extracting the file
cd wordpress
Navigate into "wordpress" directory
Complete this step the way you normally would
cp wp-config-sample.php wp-config.php
Copy wp-config-sample.php to wp-config.php
open wp-config.php
Open the file with default editor
banner -w 30 THX!