Skip to content

Instantly share code, notes, and snippets.

@muratayusuke
Last active December 10, 2015 21:59
Show Gist options
  • Save muratayusuke/4499194 to your computer and use it in GitHub Desktop.
Save muratayusuke/4499194 to your computer and use it in GitHub Desktop.
sublinme text 2 install for Ubuntu 32
#!/bin/bash
#
# This script run as root
#
# Detail: http://www.sublimetext.com/
#
##################################
# usage
##################################
# $ wget https://gist.github.com/raw/4499194/sublimetext_32.sh
# $ sh sublimetext_32.sh ${version}
##################################
pushd /usr/local/src
VER=$1
wget http://c758482.r82.cf2.rackcdn.com/Sublime%20Text%20${VER}.tar.bz2
tar xfv Sublime\ Text\ ${VER}.tar.bz2
mv Sublime\ Text\ 2 ..
ln -s /usr/local/Sublime\ Text\ 2/sublime_text /usr/local/bin/subl
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment