For reference here are the bash commands I always have to look up.
Table Of Contents
Edit Bash Settings
| $ nano ~/.bashrc
 $ nano ~/.bash_profile
 
 
 $ code ~/.bashrc
 $ code ~/.bash_profile
 
 | 
Secure Copy From Raspberry Pi to Present Directory
| $ cd /path/files/should/end/up$ scp -rp pi@192.168.0.97:/home/pi/Desktop/path/to/files .
 
 | 
Check Disk Space
Check Size of Current Directory
See All Running Processes
| $ top
 
 $ brew install htop
 $ htop
 
 | 
Ctrl + C to exit
Create Multiple Numbered Directories At Once
| for i in {1..8}; domkdir episode-0"$i"
 done
 
 | 
Or simplified: