*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
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.