add alias metadata, remove help()

pull/139/head
Erich Smith 2012-05-21 23:52:47 -04:00 committed by Nils Winkler
parent 95ce548451
commit 17aaa9ce24
13 changed files with 51 additions and 202 deletions

View File

@ -1,21 +1,9 @@
#!/usr/bin/env bash cite 'about-alias'
about-alias 'ruby bundler'
# Bundler Commands # Bundler Commands
alias be="bundle exec" alias be='bundle exec'
alias bi="bundle install" alias bi='bundle install'
alias bl="bundle list" alias bl='bundle list'
alias bu="bundle update" alias bu='bundle update'
alias bp="bundle package" alias bp='bundle package'
function bundler-help() {
echo "Bundler Aliases Usage"
echo
echo " be = bundle exec"
echo " bi = bundle install"
echo " bl = bundle list"
echo " bu = bundle update"
echo " bp = bundle package"
echo
}

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash cite 'about-alias'
about-alias 'emacs editor'
case $OSTYPE in case $OSTYPE in
linux*) linux*)
@ -6,6 +7,6 @@ case $OSTYPE in
alias e='emacsclient -n' alias e='emacsclient -n'
;; ;;
darwin*) darwin*)
alias em="open -a emacs" alias em='open -a emacs'
;; ;;
esac esac

View File

@ -1,5 +1,3 @@
#!/usr/bin/env bash
cite about-alias cite about-alias
about-alias 'general aliases' about-alias 'general aliases'
@ -30,20 +28,20 @@ alias cls='clear'
alias edit="$EDITOR" alias edit="$EDITOR"
alias pager="$PAGER" alias pager="$PAGER"
alias q="exit" alias q='exit'
alias irc="$IRC_CLIENT" alias irc="$IRC_CLIENT"
alias rb="ruby" alias rb='ruby'
# Pianobar can be found here: http://github.com/PromyLOPh/pianobar/ # Pianobar can be found here: http://github.com/PromyLOPh/pianobar/
alias piano="pianobar" alias piano='pianobar'
alias ..='cd ..' # Go up one directory alias ..='cd ..' # Go up one directory
alias ...='cd ../..' # Go up two directories alias ...='cd ../..' # Go up two directories
alias ....='cd ../../..' # Go up two directories alias ....='cd ../../..' # Go up two directories
alias -- -="cd -" # Go back alias -- -='cd -' # Go back
# Shell History # Shell History
alias h='history' alias h='history'
@ -56,30 +54,4 @@ fi
# Directory # Directory
alias md='mkdir -p' alias md='mkdir -p'
alias rd=rmdir alias rd='rmdir'
function aliases-help() {
echo "Generic Alias Usage"
echo
echo " sl = ls"
echo " ls = ls -G"
echo " la = ls -AF"
echo " ll = ls -al"
echo " l = ls -a"
echo " c/k/cls = clear"
echo " .. = cd .."
echo " ... = cd ../.."
echo " - = cd -"
echo " h = history"
echo " md = mkdir -p"
echo " rd = rmdir"
echo " editor = $EDITOR"
echo " pager = $PAGER"
echo " piano = pianobar"
echo " q = exit"
echo " irc = $IRC_CLIENT"
echo " md = mkdir -p"
echo " rd = rmdir"
echo " rb = ruby"
echo
}

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash cite 'about-alias'
about-alias 'common git abbreviations'
# Aliases # Aliases
alias gcl='git clone' alias gcl='git clone'
@ -38,36 +39,3 @@ case $OSTYPE in
alias gd='git diff' alias gd='git diff'
;; ;;
esac esac
function git-help() {
echo "Git Custom Aliases Usage"
echo
echo " gcl = git clone"
echo " g = git"
echo " get = git"
echo " ga = git add"
echo " gall = git add ."
echo " gst/gs = git status"
echo " gss = git status -s"
echo " gl = git pull"
echo " gup = git fetch && git rebase"
echo " gp = git push"
echo " gd = git diff | mate"
echo " gdv = git diff -w \"$@\" | vim -R -"
echo " gc = git commit -v"
echo " gca = git commit -v -a"
echo " gci = git commit --interactive"
echo " gb = git branch"
echo " gba = git branch -a"
echo " gcount = git shortlog -sn"
echo " gcp = git cherry-pick"
echo " gco = git checkout"
echo " gexport = git git archive --format zip --output"
echo " gdel = git branch -D"
echo " gpo = git push origin"
echo " gmu = git fetch origin -v; git fetch upstream -v; git merge upstream/master"
echo " gll = git log --graph --pretty=oneline --abbrev-commit"
echo
}

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash cite 'about-alias'
about-alias 'heroku task abbreviations'
# heroku # heroku
alias h='heroku' alias h='heroku'
@ -31,26 +32,3 @@ alias hc='heroku config'
alias hca='heroku config:add' alias hca='heroku config:add'
alias hcr='heroku config:remove' alias hcr='heroku config:remove'
alias hcc='heroku config:clear' alias hcc='heroku config:clear'
function heroku-help() {
echo "Heroku Aliases Usage"
echo
echo " h = heroku"
echo " hl = heroku list"
echo " hi = heroku info"
echo " ho = heroku open"
echo " hd = heroku dynos"
echo " hw = heroku workers"
echo " hr = heroku rake"
echo " hcon = heroku console"
echo " hnew = heroku create"
echo " hrestart = heroku restart"
echo " hlog = heroku logs"
echo " hon = heroku maintenance:on"
echo " hoff = heroku maintenance:off"
echo " hc = heroku config"
echo " hca = heroku config:add"
echo " hcr = heroku config:remove"
echo " hcc = heroku config:clear"
echo
}

View File

@ -1,14 +1,6 @@
#!/usr/bin/env bash cite 'about-alias'
about-alias 'mercurial abbreviations'
alias hs='hg status' alias hs='hg status'
alias hsum='hg summary' alias hsum='hg summary'
alias hcm='hg commit -m' alias hcm='hg commit -m'
function hg-help() {
echo "Mercurial Alias Help"
echo
echo " hs = hg status"
echo " hsum = hg summary"
echo " hcm = hg commit -m"
echo
}

View File

@ -1,24 +1,13 @@
# Some aliases for Homebrew # Some aliases for Homebrew
alias bup="brew update && brew upgrade" cite 'about-alias'
alias bout="brew outdated" about-alias 'homebrew abbreviations'
alias bin="brew install"
alias brm="brew uninstall"
alias bls="brew list"
alias bsr="brew search"
alias binf="brew info"
alias bdr="brew doctor"
function brew-help() { alias bup='brew update && brew upgrade'
echo "Homebrew Alias Usage" alias bout='brew outdated'
echo alias bin='brew install'
echo "bup = brew update && brew upgrade" alias brm='brew uninstall'
echo "bout = brew outdated" alias bls='brew list'
echo "bin = brew install" alias bsr='brew search'
echo "brm = brew uninstall" alias binf='brew info'
echo "bls = brew list" alias bdr='brew doctor'
echo "bsr = brew search"
echo "binf = brew info"
echo "bdr = brew doctor"
echo
}

View File

@ -1,22 +1,11 @@
alias mci="mvn clean install" cite 'about-alias'
alias mi="mvn install" about-alias 'maven abbreviations'
alias mrprep="mvn release:prepare"
alias mrperf="mvn release:perform"
alias mrrb="mvn release:rollback"
alias mdep="mvn dependency:tree"
alias mpom="mvn help:effective-pom"
alias mcisk="mci -Dmaven.test.skip=true"
function maven-help() { alias mci='mvn clean install'
echo "Maven Custom Aliases Usage" alias mi='mvn install'
echo alias mrprep='mvn release:prepare'
echo " mci = mvn clean install" alias mrperf='mvn release:perform'
echo " mi = mvn install" alias mrrb='mvn release:rollback'
echo " mrprep = mvn release:prepare" alias mdep='mvn dependency:tree'
echo " mrperf = mvn release:perform" alias mpom='mvn help:effective-pom'
echo " mrrb = mvn release:rollback" alias mcisk='mci -Dmaven.test.skip=true'
echo " mdep = mvn dependency:tree"
echo " mpom = mvn help:effective-pom"
echo " mcisk = mvn clean install -Dmaven.test.skip=true"
echo
}

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash cite 'about-alias'
about-alias 'osx-specific aliases'
# Desktop Programs # Desktop Programs
alias fireworks="open -a '/Applications/Adobe Fireworks CS3/Adobe Fireworks CS3.app'" alias fireworks="open -a '/Applications/Adobe Fireworks CS3/Adobe Fireworks CS3.app'"

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash cite 'about-alias'
about-alias 'rails abbreviations'
# Rails Commands # Rails Commands
alias r='rails' alias r='rails'
@ -19,24 +20,3 @@ alias restartapp='touch tmp/restart.txt'
alias restart='touch tmp/restart.txt' # restart passenger alias restart='touch tmp/restart.txt' # restart passenger
alias devlog='tail -f log/development.log' alias devlog='tail -f log/development.log'
alias taild='tail -f log/development.log' # tail dev log alias taild='tail -f log/development.log' # tail dev log
function rails-help() {
echo "Rails Aliases Usage"
echo
echo " r = rails"
echo " rg = rails generate"
echo " rs/ss = rails server"
echo " ts = thin server"
echo " rc/sc = rails console"
echo " rn = rails new"
echo " rd = rails dbconsole"
echo " rp = rails plugin"
echo " ra = rails application"
echo " rd = rails destroy"
echo " restartapp = touch tmp/restart.txt"
echo " restart = touch tmp/restart.txt"
echo " devlog = tail -f log/development.log"
echo " taild = tail -f log/development.log"
echo
}

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash cite 'about-alias'
about-alias 'textmate abbreviations'
case $OSTYPE in case $OSTYPE in
darwin*) darwin*)

View File

@ -1,19 +1,8 @@
#!/usr/bin/env bash cite 'about-alias'
about-alias 'todo.txt-cli abbreviations'
alias tls="$TODO ls" alias tls="$TODO ls"
alias ta="$TODO a" alias ta="$TODO a"
alias trm="$TODO rm" alias trm="$TODO rm"
alias tdo="$TODO do" alias tdo="$TODO do"
alias tpri="$TODO pri" alias tpri="$TODO pri"
todo-help() {
echo
echo "todo.txt-cli Custom Aliases Usage"
echo
echo " tls = $TODO ls"
echo " ta = $TODO add"
echo " trm = $TODO rm"
echo " tdo = $TODO do"
echo " tpri = $TODO pri"
echo
}

View File

@ -1,3 +1,4 @@
#!/usr/bin/env bash cite 'about-alias'
about-alias 'vim abbreviations'
alias v='mvim --remote-tab' alias v='mvim --remote-tab'