Skip to content

Instantly share code, notes, and snippets.

@jbovet
Created August 5, 2019 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbovet/d2c9eaa03196ff52da31d50c0259edc0 to your computer and use it in GitHub Desktop.
Save jbovet/d2c9eaa03196ff52da31d50c0259edc0 to your computer and use it in GitHub Desktop.
Quake 3 on OSX
#!/bin/bash
set -e
curl -s "https://gist.githubusercontent.com/simonewebdesign/a8d46cf9a19fee956886f8dbafd6ad5e/raw/4953f99f813fafa8db191e21b19a228ad74f4f52/install-quake3.sh" | bash
read -p "Do you want to start the game now? (y/n) " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
open /Applications/ioquake3/ioquake3.app
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment