Don Kidd
August 23, 2022
I recommend using Visual Studio Code, but if you would like to use something else..
For this class we will use: gitlab.csi.miamioh.edu
This will be your first Code Challenge
I wanted to briefly go over the Special Symbols that are used in the code we will be using this semester
: - colon; - semi-colon< - open angle
bracket, or less than> - close angle
bracket, or greater than[ & ]
- square brackets{ & }
- curly braces or curly bracket( & )
- parenthesis/ - slash or forward
slash\ - backslash' - single quote" - double quote~ - tilde| - pipe# - hash, number sign,
pound sign, sharp$ - dollar sign& - ampersand= - equal sign! - bang, exclamation
marktells you where you are
~/code
➜ pwd
/Users/kidddw/code
~/code
➜
go into a directory
~/code
➜ cd utilities
~/code/utilities
➜
go back one directory
~/code/utilities
➜ cd ..
~/code
➜
takes you to your home directory
~/code/utilities/jmeterScripts
➜ cd
~
➜
list contents of this directory you are in
Desktop/CSE 252/csi-starter-repos
➜ ls
code-challenge-basic-css code-challenge-git
code-challenge-basic-html code-challenge-html-form
code-challenge-bootstrap code-challenge-html-tags
code-challenge-css-boxes-tables-forms repoSetup.md
code-challenge-css-layout
Desktop/CSE 252/csi-starter-repos
➜
Create a directory
~/code/utilities
➜ mkdir test2
~/code/utilities
➜
remove a file
~/code/utilities/test2
➜ rm testfile.txt
~/code/utilities/test2
➜
remove a directory and its contents
~/code/utilities
➜ rm -rf test2
~/code/utilities
➜