Commit 8923694f authored by Varun Vijayaraghavan's avatar Varun Vijayaraghavan
Browse files

Fixed a bug in checking the platform

parent 6f859c58
# Sublime Text 2 Aliases
#unamestr = 'uname'
if [[ uname == 'Linux' ]]; then
alias st='open -a /usr/bin/sublime_text'
elif [[ uname == 'Darwin' ]]; then
alias st='open -a "/Applications/Sublime Text 2.app'
if [[ $('uname') == 'Linux' ]]; then
alias st='/usr/bin/sublime_text&'
elif [[ $('uname') == 'Darwin' ]]; then
alias st='open -a /Applications/Sublime Text 2.app'
fi
alias stt='st .'
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment