Skip to content

Instantly share code, notes, and snippets.

@adamhl8
adamhl8 / lesson_notes.md
Last active September 9, 2023 04:35
Shell/Command Line Lesson Notes

Shell/Command Line Lesson Notes

Command Line "Magic"

"What's the difference between a terminal and a shell?"

A terminal is the computer application you open (e.g. macOS Terminal, iTerm, etc). You need some kind of terminal app to be able to interact with a shell.

@adamhl8
adamhl8 / setup.bash
Last active June 27, 2023 18:31
Mac Setup
#!/bin/bash
set -euo pipefail
IFS=$'\n\t'
zshrc="${HOME}/.zshrc"
ohmyzsh="${HOME}/.oh-my-zsh"
sudo -v
cd "${HOME}"