Created
October 30, 2013 00:43
-
-
Save mcrider/7225326 to your computer and use it in GitHub Desktop.
bash_profile
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
# Add tab completion for SSH hostnames based on ~/.ssh/config, ignoring wildcards | |
[ -e "$HOME/.ssh/config" ] && complete -o "default" -o "nospace" -W "$(grep "^Host" ~/.ssh/config | grep -v "[?*]" | cut -d " " -f2)" scp sftp ssh | |
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' | |
} | |
function proml { | |
local BLUE="\[\033[0;34m\]" | |
local RED="\[\033[0;31m\]" | |
local LIGHT_RED="\[\033[1;31m\]" | |
local GREEN="\[\033[0;32m\]" | |
local LIGHT_GREEN="\[\033[1;32m\]" | |
local WHITE="\[\033[1;37m\]" | |
local LIGHT_GRAY="\[\033[0;37m\]" | |
case $TERM in | |
xterm*) | |
TITLEBAR='\[\033]0;\u@\h:\w\007\]' | |
;; | |
*) | |
TITLEBAR="" | |
;; | |
esac | |
PS1="${TITLEBAR}\ | |
$BLUE[$RED\$(date +%H:%M)$BLUE]\ | |
$BLUE[$RED\u@\h:\w$GREEN\$(parse_git_branch)$BLUE]\ | |
$GREEN\$ " | |
PS2='> ' | |
PS4='+ ' | |
} | |
proml | |
alias b='cd ../..' | |
alias g='git' | |
alias bb='bbedit' | |
alias subl='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl' | |
alias s='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl' | |
alias ff='find . | grep' | |
export CVS_RSH=ssh | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxCxDxBxegedabagacad | |
alias ls='ls -la' | |
function del() { | |
while [ -n "$1" ]; do | |
local file=`basename "$1"` | |
# Chop trailing '/' if there | |
file=${file%/} | |
local destination="" | |
if [ -e "$HOME/.Trash/$file" ]; then | |
# Extract file and extension | |
local ext=`expr "$file" : ".*\(\.[^\.]*\)$"` | |
local base=${file%$ext} | |
# Add a space between base and timestamp | |
test -n "$base" && base="$base " | |
destination="/$base`date +%H-%M-%S`_$RANDOM$ext" | |
fi | |
echo "Moving '$1' to '$HOME/.Trash$destination'" | |
mv "$1" "$HOME/.Trash$destination" | |
shift | |
done | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment