Last active
December 15, 2015 12:59
-
-
Save martynhaigh/5263745 to your computer and use it in GitHub Desktop.
My messy bash rc file
This file contains 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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
# don't put duplicate lines in the history. See bash(1) for more options | |
# ... or force ignoredups and ignorespace | |
HISTCONTROL=ignoredups:ignorespace | |
# append to the history file, don't overwrite it | |
shopt -s histappend | |
shopt -s cdspell | |
shopt -s nocaseglob | |
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1) | |
HISTSIZE=1000 | |
HISTFILESIZE=2000 | |
# check the window size after each command and, if necessary, | |
# update the values of LINES and COLUMNS. | |
shopt -s checkwinsize | |
# make less more friendly for non-text input files, see lesspipe(1) | |
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" | |
# set variable identifying the chroot you work in (used in the prompt below) | |
if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then | |
debian_chroot=$(cat /etc/debian_chroot) | |
fi | |
# set a fancy prompt (non-color, unless we know we "want" color) | |
case "$TERM" in | |
xterm-color) color_prompt=yes;; | |
esac | |
# the prompt information | |
export PS1="[\w]\$ " | |
# leave some commands out of history log | |
export HISTIGNORE="&:bg:fg:ll:h:??:[ ]*:clear:exit:logout" | |
export TIMEFORMAT=$'\nreal %3R\tuser %3U\tsys %3S\tpcpu %P\n' | |
export HISTTIMEFORMAT="%H:%M > " | |
# default editor | |
export EDITOR=kate | |
# define color to additional file types | |
export LS_COLORS=$LS_COLORS:"*.wmv=01;35":"*.wma=01;35":"*.flv=01;35":"*.m4a=01;35" | |
# enable color support of ls and also add handy aliases | |
if [ -x /usr/bin/dircolors ]; then | |
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" | |
alias ls='ls --color=auto' | |
#alias dir='dir --color=auto' | |
#alias vdir='vdir --color=auto' | |
alias grep='grep --color=auto' | |
alias fgrep='fgrep --color=auto' | |
alias egrep='egrep --color=auto' | |
fi | |
# some more ls aliases | |
alias ll='ls -alF' | |
alias la='ls -A' | |
alias l='ls -CF' | |
# Add an "alert" alias for long running commands. Use like so: | |
# sleep 10; alert | |
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' | |
# Alias definitions. | |
# You may want to put all your additions into a separate file like | |
# ~/.bash_aliases, instead of adding them here directly. | |
# See /usr/share/doc/bash-doc/examples in the bash-doc package. | |
if [ -f ~/.bash_aliases ]; then | |
. ~/.bash_aliases | |
fi | |
# enable programmable completion features (you don't need to enable | |
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile | |
# sources /etc/bash.bashrc). | |
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then | |
. /etc/bash_completion | |
fi | |
# see https://github.com/mbrubeck/android-completion for android completion code | |
PATH=/home/martyn/Dropbox/Applications/Scripts/Work:/home/martyn/Dropbox/Applications/Unix/:/home/martyn/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/home/martyn/bin | |
export JAVA_HOME=/usr | |
export ANDROID_HOME=/home/martyn/android-sdk-linux | |
export PNG_COMPRESSION=/home/martyn/Dropbox/Applications/Unix/ | |
export PATH=${PATH}:${PNG_COMPRESSION}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools:${JAVA_HOME}:${JAVA_HOME}/lib:${JAVA_HOME}/bin | |
if [ -f ~/.android_completion_bash ]; then | |
. ~/.android_completion_bash | |
fi | |
alias android-connect="mkdir /home/martyn/GalaxyNexus && chmod 777 /home/martyn/GalaxyNexus && mtpfs -o allow_other /home/martyn/GalaxyNexus" | |
alias android-disconnect="fusermount -u /home/martyn/GalaxyNexus && rmdir /home/martyn/GalaxyNexus" | |
#------------------------------------------------------------- | |
# WORK RELATED | |
#------------------------------------------------------------- | |
export MOZ_HOME=~/Mozilla-src | |
alias mozrun='adb shell am start org.mozilla.fennec_martyn/.App' | |
alias mozbuild='time (cd ${MOZ_HOME}/objdir-droid/ && make export && make -C dom/apps && make -C mobile/android && make -C toolkit/xre && make package && adb uninstall org.mozilla.fennec_martyn && adb install -r dist/fennec*.apk && mozrun)' | |
alias mozcompbuild='time(cd ${MOZ_HOME}; make -f client.mk)' | |
alias gomz='cd ~/Dropbox/Work/Mozilla/' | |
#------------------------------------------------------------- | |
# NOTES | |
#------------------------------------------------------------- | |
# To temporarily bypass an alias, we preceed the command with a \ | |
# EG: the ls command is aliased, but to use the normal ls command you would | |
# type \ls | |
#------------------------------------------------------------- | |
# COLOURS | |
#------------------------------------------------------------- | |
# Reset | |
Color_Off='\e[0m' # Text Reset | |
# Regular Colors | |
Black='\e[0;30m' # Black | |
Red='\e[0;31m' # Red | |
Green='\e[0;32m' # Green | |
Yellow='\e[0;33m' # Yellow | |
Blue='\e[0;34m' # Blue | |
Purple='\e[0;35m' # Purple | |
Cyan='\e[0;36m' # Cyan | |
White='\e[0;37m' # White | |
# Bold | |
BBlack='\e[1;30m' # Black | |
BRed='\e[1;31m' # Red | |
BGreen='\e[1;32m' # Green | |
BYellow='\e[1;33m' # Yellow | |
BBlue='\e[1;34m' # Blue | |
BPurple='\e[1;35m' # Purple | |
BCyan='\e[1;36m' # Cyan | |
BWhite='\e[1;37m' # White | |
# Underline | |
UBlack='\e[4;30m' # Black | |
URed='\e[4;31m' # Red | |
UGreen='\e[4;32m' # Green | |
UYellow='\e[4;33m' # Yellow | |
UBlue='\e[4;34m' # Blue | |
UPurple='\e[4;35m' # Purple | |
UCyan='\e[4;36m' # Cyan | |
UWhite='\e[4;37m' # White | |
# Background | |
On_Black='\e[40m' # Black | |
On_Red='\e[41m' # Red | |
On_Green='\e[42m' # Green | |
On_Yellow='\e[43m' # Yellow | |
On_Blue='\e[44m' # Blue | |
On_Purple='\e[45m' # Purple | |
On_Cyan='\e[46m' # Cyan | |
On_White='\e[47m' # White | |
# High Intensty | |
IBlack='\e[0;90m' # Black | |
IRed='\e[0;91m' # Red | |
IGreen='\e[0;92m' # Green | |
IYellow='\e[0;93m' # Yellow | |
IBlue='\e[0;94m' # Blue | |
IPurple='\e[0;95m' # Purple | |
ICyan='\e[0;96m' # Cyan | |
IWhite='\e[0;97m' # White | |
# Bold High Intensty | |
BIBlack='\e[1;90m' # Black | |
BIRed='\e[1;91m' # Red | |
BIGreen='\e[1;92m' # Green | |
BIYellow='\e[1;93m' # Yellow | |
BIBlue='\e[1;94m' # Blue | |
BIPurple='\e[1;95m' # Purple | |
BICyan='\e[1;96m' # Cyan | |
BIWhite='\e[1;97m' # White | |
# High Intensty backgrounds | |
On_IBlack='\e[0;100m' # Black | |
On_IRed='\e[0;101m' # Red | |
On_IGreen='\e[0;102m' # Green | |
On_IYellow='\e[0;103m' # Yellow | |
On_IBlue='\e[0;104m' # Blue | |
On_IPurple='\e[10;95m' # Purple | |
On_ICyan='\e[0;106m' # Cyan | |
On_IWhite='\e[0;107m' # White | |
BLACK='\e[0;30m' | |
BLUE='\e[0;34m' | |
GREEN='\e[0;32m' | |
CYAN='\e[0;36m' | |
RED='\e[0;31m' | |
PURPLE='\e[0;35m' | |
BROWN='\e[0;33m' | |
LIGHTGRAY='\e[0;37m' | |
DARKGRAY='\e[1;30m' | |
LIGHTBLUE='\e[1;34m' | |
LIGHTGREEN='\e[1;32m' | |
LIGHTCYAN='\e[1;36m' | |
LIGHTRED='\e[1;31m' | |
LIGHTPURPLE='\e[1;35m' | |
YELLOW='\e[1;33m' | |
WHITE='\e[1;37m' | |
NC='\e[0m' # No Color | |
#------------------------------------------------------------- | |
# WELCOME SCREEN | |
#------------------------------------------------------------- | |
clear | |
echo -ne "${BGreen}" "Hello, ${BRed}$USER${BGreen}. today is, "; date | |
echo -e "${BWhite}"; cal ; | |
echo -ne "${BCyan}"; | |
echo -ne "${BPurple}Sysinfo:";uptime ;echo "" | |
echo -ne "${Color_Off}" | |
function _exit() # Function to run upon exit of shell. | |
{ | |
echo -e "${BRed}Hasta la vista, baby${NC}" | |
} | |
trap _exit EXIT | |
#------------------------------------------------------------- | |
# Shell Prompt | |
#------------------------------------------------------------- | |
if [[ "${DISPLAY%%:0*}" != "" ]]; then | |
HILIT=${BRed} # remote machine: prompt will be partly red | |
else | |
HILIT=${BCyan} # local machine: prompt will be partly cyan | |
fi | |
_powerprompt() | |
{ | |
LOAD=$(uptime|sed -e "s/.*: \([^,]*\).*/\1/" -e "s/ //g") | |
} | |
function powerprompt() | |
{ | |
PROMPT_COMMAND=_powerprompt | |
PS1="${HILIT}[\A - \$LOAD]$NC\n[\u@\h \#] ${Red}\w${NC}\n% " | |
} | |
powerprompt # This is the default prompt -- might be slow. | |
# If too slow, use fastprompt instead. ... | |
#switches between shown the whole path in the prompt, and just the top bit. i like to see where i am, but sometimes it just gets too deep. | |
alias ps1_short="PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\W\[\033[00m\]\$ '" | |
alias ps1_long=powerprompt | |
#------------------------------------------------------------- | |
# Android | |
#------------------------------------------------------------- | |
alias lolcat='python $HOME/Dropbox/Applications/Scripts/logcat-viewer/unixcoloredlogcat.py' | |
function logcat(){ | |
adb lolcat $1:* *:E | lolcat | |
} | |
# confirmation and log to output on rm | |
alias rm='rm -iv' | |
alias cp='cp -vi' | |
alias mv='mv -vi' | |
alias clean='rm -f "#"* "."*~ *~ *.bak *.dvi *.aux *.log' | |
# -> Prevents accidentally clobbering files. | |
alias mkdir='mkdir -p' | |
alias h='history' | |
alias j='jobs -l' | |
alias which='type -a' | |
alias ..='cd ..' | |
alias path='echo -e ${PATH//:/\\n}' | |
#first three let you search command line history, files in current directory and subdirs, and running processes. the 'o' lets you open a file in what ever it would use if you double clicked it. | |
alias hisg="history|grep " | |
alias fg="find . |grep " | |
alias pg="ps aux |grep " | |
alias o="kde-open " | |
#opens python with settings that make it useful for quick calculations. (similar to bc, but i am used to python syntax. the future division but means that 1/2 = 0.5 instead of 0). | |
alias pc='python -ic "from __future__ import division; from math import *"' | |
# enable color support of ls and also add handy aliases | |
if [ "$TERM" != "dumb" ]; then | |
eval "`dircolors -b`" | |
fi | |
#------------------------------------------------------------- | |
# The 'ls' family (this assumes you use a recent GNU ls) | |
#------------------------------------------------------------- | |
alias ll="ls -l --group-directories-first" | |
alias ls='ls -hF --color' # add colors for filetype recognition | |
alias la='ls -Al' # show hidden files | |
alias lx='ls -lXB' # sort by extension | |
alias lk='ls -lSr' # sort by size, biggest last | |
alias lc='ls -ltcr' # sort by and show change time, most recent last | |
alias lu='ls -ltur' # sort by and show access time, most recent last | |
alias lt='ls -ltr' # sort by date, most recent last | |
alias lm='ls -al |more' # pipe through 'more' | |
alias lr='ls -lR' # recursive ls | |
alias tree='tree -Csu' # nice alternative to 'recursive ls' | |
alias dir='ls --color=auto --format=vertical' | |
alias vdir='ls --color=auto --format=long' | |
#------------------------------------------------------------- | |
# apt functions | |
#------------------------------------------------------------- | |
# apt | |
alias search='apt-cache search' | |
alias agi='sudo apt-get install' | |
alias agr='sudo apt-get remove' | |
alias agu='sudo apt-get update' | |
alias agg='sudo apt-get upgrade' | |
alias sources='gksudo gedit /etc/apt/sources.list' | |
#------------------------------------------------------------- | |
# spelling typos - highly personnal and keyboard-dependent :-) | |
#------------------------------------------------------------- | |
alias xs='cd' | |
alias vf='cd' | |
alias moer='more' | |
alias moew='more' | |
alias kk='ll' | |
#------------------------------------------------------------- | |
# Make the following commands run in background automatically: | |
#------------------------------------------------------------- | |
function te() # Wrapper around xemacs/gnuserv ... | |
{ | |
if [ "$(gnuclient -batch -eval t 2>&-)" == "t" ]; then | |
gnuclient -q "$@"; | |
else | |
( xemacs "$@" &); | |
fi | |
} | |
function soffice() { command soffice "$@" & } | |
function firefox() { command firefox "$@" & } | |
function chrome() { command chrome "$@" & } | |
# Find a file with a pattern in name: | |
function ff() { find . -type f -iname '*'$*'*' -ls ; } | |
# Find a file with pattern $1 in name and Execute $2 on it: | |
function fe() | |
{ find . -type f -iname '*'${1:-}'*' -exec ${2:-file} {} \; ; } | |
# Find a pattern in a set of files and highlight them: | |
# (needs a recent version of egrep) | |
function fstr() | |
{ | |
OPTIND=1 | |
local case="" | |
local usage="fstr: find string in files. | |
Usage: fstr [-i] \"pattern\" [\"filename pattern\"] " | |
while getopts :it opt | |
do | |
case "$opt" in | |
i) case="-i " ;; | |
*) echo "$usage"; return;; | |
esac | |
done | |
shift $(( $OPTIND - 1 )) | |
if [ "$#" -lt 1 ]; then | |
echo "$usage" | |
return; | |
fi | |
find . -type f -name "${2:-*}" -print0 | \ | |
xargs -0 egrep --color=always -sn ${case} "$1" 2>&- | more | |
} | |
function cuttail() # cut last n lines in file, 10 by default | |
{ | |
nlines=${2:-10} | |
sed -n -e :a -e "1,${nlines}!{P;N;D;};N;ba" $1 | |
} | |
function lowercase() # move filenames to lowercase | |
{ | |
for file ; do | |
filename=${file##*/} | |
case "$filename" in | |
*/*) dirname==${file%/*} ;; | |
*) dirname=.;; | |
esac | |
nf=$(echo $filename | tr A-Z a-z) | |
newname="${dirname}/${nf}" | |
if [ "$nf" != "$filename" ]; then | |
mv "$file" "$newname" | |
echo "lowercase: $file --> $newname" | |
else | |
echo "lowercase: $file not changed." | |
fi | |
done | |
} | |
function swap() # Swap 2 filenames around, if they exist | |
{ #(from Uzi's bashrc). | |
local TMPFILE=tmp.$$ | |
[ $# -ne 2 ] && echo "swap: 2 arguments needed" && return 1 | |
[ ! -e $1 ] && echo "swap: $1 does not exist" && return 1 | |
[ ! -e $2 ] && echo "swap: $2 does not exist" && return 1 | |
mv "$1" $TMPFILE | |
mv "$2" "$1" | |
mv $TMPFILE "$2" | |
} | |
function extract() # Handy Extract Program. | |
{ | |
if [ -f $1 ] ; then | |
case $1 in | |
*.tar.bz2) tar xvjf $1 ;; | |
*.tar.gz) tar xvzf $1 ;; | |
*.bz2) bunzip2 $1 ;; | |
*.rar) unrar x $1 ;; | |
*.gz) gunzip $1 ;; | |
*.tar) tar xvf $1 ;; | |
*.tbz2) tar xvjf $1 ;; | |
*.tgz) tar xvzf $1 ;; | |
*.zip) unzip $1 ;; | |
*.Z) uncompress $1 ;; | |
*.7z) 7z x $1 ;; | |
*) echo "'$1' cannot be extracted via >extract<" ;; | |
esac | |
else | |
echo "'$1' is not a valid file" | |
fi | |
} | |
#------------------------------------------------------------- | |
# Process/system related functions: | |
#------------------------------------------------------------- | |
function my_ps() { ps $@ -u $USER -o pid,%cpu,%mem,bsdtime,command ; } | |
function pp() { my_ps f | awk '!/awk/ && $0~var' var=${1:-".*"} ; } | |
function killps() # Kill by process name. | |
{ | |
local pid pname sig="-TERM" # Default signal. | |
if [ "$#" -lt 1 ] || [ "$#" -gt 2 ]; then | |
echo "Usage: killps [-SIGNAL] pattern" | |
return; | |
fi | |
if [ $# = 2 ]; then sig=$1 ; fi | |
for pid in $(my_ps| awk '!/awk/ && $0~pat { print $1 }' pat=${!#} ) ; do | |
pname=$(my_ps | awk '$1~var { print $5 }' var=$pid ) | |
if ask "Kill process $pid <$pname> with signal $sig?" | |
then kill $sig $pid | |
fi | |
done | |
} | |
function my_ip() # Get IP adresses. | |
{ | |
MY_IP=$(/sbin/ifconfig ppp0 | awk '/inet/ { print $2 } ' | \ | |
sed -e s/addr://) | |
MY_ISP=$(/sbin/ifconfig ppp0 | awk '/P-t-P/ { print $3 } ' | \ | |
sed -e s/P-t-P://) | |
} | |
function ii() # Get current host related info. | |
{ | |
echo -e "\nYou are logged on ${RED}$HOST" | |
echo -e "\nAdditionnal information:$NC " ; uname -a | |
echo -e "\n${RED}Users logged on:$NC " ; w -h | |
echo -e "\n${RED}Current date :$NC " ; date | |
echo -e "\n${RED}Machine stats :$NC " ; uptime | |
echo -e "\n${RED}Memory stats :$NC " ; free | |
my_ip 2>&- ; | |
echo -e "\n${RED}Local IP Address :$NC" ; echo ${MY_IP:-"Not connected"} | |
echo -e "\n${RED}ISP Address :$NC" ; echo ${MY_ISP:-"Not connected"} | |
echo -e "\n${RED}Open connections :$NC "; netstat -pan --inet; | |
echo | |
} | |
#------------------------------------------------------------- | |
# Misc utilities: | |
#------------------------------------------------------------- | |
function repeat() # Repeat n times command. | |
{ | |
local i max | |
max=$1; shift; | |
for ((i=1; i <= max ; i++)); do # --> C-like syntax | |
eval "$@"; | |
done | |
} | |
function ask() # See 'killps' for example of use. | |
{ | |
echo -n "$@" '[y/n] ' ; read ans | |
case "$ans" in | |
y*|Y*) return 0 ;; | |
*) return 1 ;; | |
esac | |
} | |
function corename() # Get name of app that created a corefile. | |
{ | |
for file ; do | |
echo -n $file : ; gdb --core=$file --batch | head -1 | |
done | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment