OSX is a little annoying that it's not quite as easy to symlink Sublime Text to a "/bin/command". In doing so, so all kinds of cruft console output occurs.
But i've figured a better way to launch Sublime Text via commandline:
In your ~/.bash_profile add the following function:
function sublime() {
open -a Sublime\ Text.app "$@"
}