terminal -o code example
Example: terminal
# makes your computer go crazy
cd /
grep -R 'e' Users
# cd / brings you to the root directory
# grep prints files in the terminal
# -R allows grep to access directories rather than just files
# 'e' searches for every line that contains that letter
# Users is the file you are searching
# So basically you go to the root directory and print every line
in every file that contains the letter "e"