====Hello and welcome to the spring 2019 semester of Unix!==== //This is the class Wiki page where we, the students, create the content needed to help one another with contributing information.// //Enjoy your stay, and please help add to this. Every bit of information can help fellow classmates, or Unix enthusiast.// //(Also if you want take a look at jsamson3 (Justen Samson's) journal entries, there are a good amount of notes in there too! For I, jsamson3 am the one who wrote this prologue and don't want to just copy and paste my info here: not sure if I am allowed to yet 8-O , but I will add to this. Enjoy.)// TO START A NEW SECTION IN THE WIKI, PLEASE USE "==== NAME OF SECTION ====", disregard the quotes. __**NOW LET'S GET STARTED!!!**__ ====Wildcard Characters==== **?** <- This will match one of any character. ** * ** <- This will match zero or more of any character. **[ ]** <- This will match one of any enclosed character(s). **(CHARACTERCLASS)** **[^ ]** <- Will not match one of any enclosed character(s). **(INVERTED CHARACTERCLASS)**