Introduction
This is the chronicle of my epic journey into the realms of Unix and Linux, strange and wonderful lands that frankly terrify me. I'm mostly writing this so my family will have something to console them when I disappear into the matrix. And this isn't even my final form!!!!
This is what I look like:
I like videogames just like every other person who is taking this class
I also like lesser hobbies like reading, drawing, listening to music and
==PIXEL ART==
my alter ego is William Shatner
UNIX/Linux Fundamentals Journal
WEEK 1
*learned how to use some basic commands such as:
ls- “Sight”, or what's in this directory
who- who is on the server at the time
w- like who, but slightly less specific
cd src- “cd source” takes you back to the base folder
cd- snaps back to home
cd..- up 1 directory
man (any command)- shows how a command works manually, specific uses etc.
whereis (“”)- shows location of prompt
whoami- built in amnesia support
pom- phase of the moon
cal- calendar
WEEK 2
*learned meaning of some of the formats in the terminal
blue font- directory files
cyan font- symbolic link
red font- broken symbolic link OR compressed file
magenta font- media file (yay!)
green font- executable font
yellow font- special (device) file (rare)
white font- fg
red font- bg- set UID
*also learned meanbing of the 10 character indicators.
First character indicates file type
second group (three characters) indicates read, write, execute authorizations for the user
third group (three characters) indicates read, write, execute authorizations for users within your group
fourth (three characters) indicates read, write, execute authorizations for the global community, an alien race comprised largely of ignorants and kittens
WEEK 3
WILDCARDS
Wildcards are a way to modify searches.
-*-zero, any, or all characters
-?-any single character
-[]-any character specified within the brackets
REGULAR EXPRESSIONS
regular expressions are similar to wildcards, but in some cases more specific, and paired with different commands, like grep.
-.-any single character
-*-zero or more of the previous characters
-[]-matches anything within the square brackets
-[^ ]-DOES NOT match any of the characters specified within the brackets
-|-can mean or in some instances
Also, ^ specifies the beginning of a regular expression and $ specifies the end in most cases.
I am a banana, my spoon is too big.