Skip to content

Instantly share code, notes, and snippets.

@mcsf
Last active September 24, 2018 10:42
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 mcsf/a54ecb0c68feab1e4e017f8ced018400 to your computer and use it in GitHub Desktop.
Save mcsf/a54ecb0c68feab1e4e017f8ced018400 to your computer and use it in GitHub Desktop.
#!/bin/bash
for app in \
Docker \
Slack \
Firefox\ Developer\ Edition
Your\ Other\ Work\ Applications
do
echo -n "Launch $app? [Yn] "
read answer
[[ $answer != n ]] && open -gja "$app"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment