Created
April 10, 2014 17:00
-
-
Save nelsonJM/10402285 to your computer and use it in GitHub Desktop.
Ubuntu: my .bash_aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# My aliases | |
# to start compass | |
alias mycompass='source /home/josh/.rvm/scripts/rvm' | |
# to mount shared drive | |
alias devshare='sudo mount -t vboxsf devshare ~/devshare' | |
alias locals='sudo mount -t vboxsf Local-SS ~/Local-SS' | |
# to start, stop, and restart xampp | |
alias xamppstart='sudo /opt/lampp/lampp start' | |
alias xamppstop='sudo /opt/lampp/lampp stop' | |
alias xamppr='sudo /opt/lampp/lampp restart' | |
# Go to root of server | |
alias my-server='cd /opt/lampp/htdocs/' | |
# Go to local steelsentry site | |
alias steel='cd /opt/lampp/htdocs/wp-content/themes/thesis_185/custom/' | |
# Go to theme with wp ecommerce built in | |
alias theme='cd /opt/lampp/htdocs/theme/wp-content/themes/site_boilerplate-v2/' | |
# SteelSentry-theme | |
alias stheme='cd /opt/lampp/htdocs/theme-Experiment/wp-content/themes/steelsentry-theme/' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment