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 filenamePermanently delete a file immediately
Does not go to Trash
rmdir directorynamePermanently delete a folder immediately
Does not go to Trash
helpAccess user manual
cd ~/DesktopNavigate to Desktop
mkdir mynewdirectoryCreate new directory
cd mynewdirectoryEnter new directory
pwdCheck your current location
Download WordPress
curl -O https://wordpress.org/latest.zipunzip latest.zipExtracting the file
cd wordpressNavigate into "wordpress" directory
Complete this step the way you normally would
cp wp-config-sample.php wp-config.phpCopy wp-config-sample.php to wp-config.php
open wp-config.phpOpen the file with default editor
banner -w 30 THX!