Skip to content

Instantly share code, notes, and snippets.

@homerquan
Last active January 17, 2016 14:55
Show Gist options
  • Save homerquan/7a9cd915d7666ae81ac2 to your computer and use it in GitHub Desktop.
Save homerquan/7a9cd915d7666ae81ac2 to your computer and use it in GitHub Desktop.
#!/bin/sh
if [ $# -eq 0 ]; then
/opt/sublime_text_2/sublime_text . > /dev/null 2>&1 &
else
if [ ${1} == "--help" ]; then
/opt/sublime_text_2/sublime_text --help
else
/opt/sublime_text_2/sublime_text $@ > /dev/null 2>&1 &
fi
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment