Skip to content

Instantly share code, notes, and snippets.

View scxdn's full-sized avatar
💜

xdnpaws scxdn

💜
View GitHub Profile
@bradtraversy
bradtraversy / terminal-commands.md
Last active April 28, 2025 18:13
Common Terminal Commands

Common Terminal Commands

Key Commands & Navigation

Before we look at some common commands, I just want to note a few keyboard commands that are very helpful:

  • Up Arrow: Will show your last command
  • Down Arrow: Will show your next command
  • Tab: Will auto-complete your command
  • Ctrl + L: Will clear the screen
@santaklouse
santaklouse / CrossOver.sh
Last active April 29, 2025 10:41
unlimited CrossOver trial (MacOS)
#!/usr/bin/env bash
# checck if pidof exists
PIDOF="$(which pidof)"
# and if not - install it
(test "${PIDOF}" && test -f "${PIDOF}") || brew install pidof
# find app in default paths
CO_PWD=~/Applications/CrossOver.app/Contents/MacOS
test -d "${CO_PWD}" || CO_PWD=/Applications/CrossOver.app/Contents/MacOS