Getting started:
Related tutorials:
Getting started:
Related tutorials:
| //Place this inside ~/Library/Application Support/Sublime Text/Packages/ | |
| //Linux: ~/.config/sublime-text/Packages/User/ | |
| //This is for SQL, so the file type of the new file must be .sql. | |
| //You might need to add this if autocomplete doesn't appear | |
| //Put in ~/Library/Application Support/Sublime Text/Packages/user/Preferences.sublime-settings | |
| //{ | |
| // "auto_complete_selector": "source, text" | |
| //} |
| #!/bin/sh | |
| if [ "root" != "$(whoami)" ]; then | |
| echo "You must run this command as root" 1>&2 | |
| exit 1 | |
| fi | |
| set -x | |
| # Download and extract | |
| if [ ! -z "${1}" ]; then |