Record of Linux Commands:
cd ../ = Navigate up one directory
cd name* = Navigate to directory with a full name that includes "name"
cmsenv = Runs the script required to use the "Root" program
find . -name "*name" = List files in the current directory with a full name that includes "name"
cat = print the contents to the terminal
chmod = edit file permissions (+x means all permissions) (1-permission to execute, 4-permission to edit, 2-permission to read; add desired permissions in format abc a-file owner b-all users on a machine c-rest of the world)
touch = creates files out of arguments
echo = prints argument
[output] > [file_name] = Inputs output of a command into a file, replacing the file's contents
[output] >> [file_name] = Inputs output of a command into a file, adding to the file's contents
history = displays all commands used during current terminal session
.[file_name] = hides files from ls
ls -a = Displays all and hidden files in a directory
ls -l = Displays expanded information on files in a directory
.quit = Closes the ROOT program
TBrower [argument] = While in root, opens the root browser.