Skip to content

Instantly share code, notes, and snippets.

View c-bartell's full-sized avatar
👻

Curtis Bartell c-bartell

👻
  • Platform Engineer @Ibotta
  • Denver, CO
View GitHub Profile

Keyboard Shortcuts Cheat Sheet

Mac Environment

@c-bartell
c-bartell / shell_scripting_cheat_sheet.md
Last active November 24, 2020 20:39
Cheat sheet for Zsh scripting.

File Setup:


  1. Line one is: #!/bin/zsh
  • #! is called 'shebang'
  1. Comments are denoted by #
  2. In variable declaration, NO WHITESPACE ON EITHER SIDE OF =.
  • ex: myName="Curtis"

Setting up script to be executable:


@c-bartell
c-bartell / cheat_sheet.md
Last active February 18, 2025 17:20
Helpful keybindings and other stuff that I can use for reference and share with my students.