Cleaned bash it up

This commit is contained in:
Robert R Evans
2010-10-02 12:29:17 -07:00
parent 74fe8378bd
commit 76ed68d18c
21 changed files with 37 additions and 13 deletions

View File

@@ -1,3 +1,5 @@
#!/bin/bash
# Desktop Programs
alias fireworks="open -a '/Applications/Adobe Fireworks CS3/Adobe Fireworks CS3.app'"
alias photoshop="open -a '/Applications/Adobe Photoshop CS3/Adobe Photoshop.app'"

View File

@@ -1,3 +1,5 @@
#!/bin/bash
# Aliases
alias g='git'
alias gst='git status'

View File

@@ -1,3 +1,5 @@
#!/bin/bash
function tab() {
osascript 2>/dev/null <<EOF
tell application "System Events"

View File

@@ -1,11 +1,4 @@
#
# These is some Alias' for Rails
#
alias ss='script/server'
alias sc='script/console'
alias restart_app='touch tmp/restart.txt'
#!/bin/bash
# Rails Commands
alias r='rails'
@@ -18,4 +11,7 @@ alias rp='rails plugin'
alias ra='rails application'
alias rd='rails destroy'
alias ss='script/server'
alias sc='script/console'
alias restart_app='touch tmp/restart.txt'
alias devlog='tail -f log/development.log'

View File

@@ -1,3 +1,4 @@
#!/bin/bash
function remove_gem {
gem list | grep $1 | awk '{ print $1; }' | xargs sudo gem uninstall
}

View File

@@ -1,3 +1,4 @@
#!/bin/bash
switch () {
rvm $1
local v=$(rvm_version)

View File

@@ -1,3 +1,4 @@
#!/bin/bash
rm_svn(){
find $1 -name .svn -print0 | xargs -0 rm -rf
}

View File

@@ -1,3 +1,5 @@
#!/bin/bash
# Textmate
alias e='mate . &'
alias et='mate app config db lib public script test spec config.ru Gemfile Rakefile README &'

View File

@@ -1,2 +1,4 @@
#!/bin/bash
# VIM
alias v='mvim --remote-silent'