up vote 29 down vote favorite
37
share [g+] share [fb]

.bashrc modifications are like nesting for developers. All I have right now is a few aliases and some PATH modifications. What's in yours?

link|improve this question
feedback

23 Answers

Check out dotfiles.org. It is a place for sharing what you do in any of your "dotfiles".

link|improve this answer
Is it just me or has this site been down for months? – dlamblin Nov 14 '09 at 9:38
Yeah it seems defunct. – temp2290 Feb 16 '10 at 17:39
@temp2290: Its back – bobobobo Aug 26 '10 at 12:33
feedback

The most interesting line in my .bashrc would have to be the one for prefixing my prompt with the previous command's return code:

PS1='`_ret=$?; if test $_ret -ne 0; then echo "$_ret:"; set ?=$_ret; unset _ret; fi`\u@\h:\W\$ '

This way if the command returns a failure code, that code prefixes the next prompt, but if it succeeds nothing is printed. It maintains the $? variable so you can use it in other conditionals.

ted@tohno:~$ true
ted@tohno:~$ 

ted@tohno:~$ false
1:ted@tohno:~$

This makes it easy to ensure that your programs have sensible return codes.

link|improve this answer
feedback

The big three things I put in every new bash file are the following:

export HISTCONTROL=erasedups
export HISTSIZE=10000
shopt -s histappend

It erases duplicate entries, cranks the size up to 10K entries (you can never have enough bash history, and tells the shell to append to the older history file, not overwrite it on exit.

link|improve this answer
4  
I'm curious. Why do you need to export the variables? (I don't in my bash .profile and it works just fine) – bias Mar 27 '09 at 18:59
Yes why the export? – corydoras Oct 6 '10 at 3:59
feedback
# make bash autocomplete with up arrow  
bind '"\e[A":history-search-backward'  
bind '"\e[B":history-search-forward'  

# make tab cycle through commands instead of listing  
bind '"\t":menu-complete'

I love this. The up arrow auto-completes function commands like magic.

link|improve this answer
+1 Thank you! I can't live without this feature anymore. This post is clearly undervoted. – Phong Jun 14 '11 at 1:14
feedback

Aside from the usual boring things, like adding directories to $PATH and $MANPATH, setting $EDITOR and history stuff mentioned above:

source /etc/bash_completion

..for shiney tab-completion (download here, completion for things like ssh hosts, so ssh mysi[tab] will complete ssh mysiteslongurl.example.com, and even seems to complete things like mencoder arguments)

source ~/.git-completion.bash

..completes git commands, branch names and such (it's in the contrib directory of git, or here)

alias gs="git status"
alias ga="git add"
alias gd="git diff"
alias gc="git commit"
alias gp="git push"
alias gu="git gui"

..shortened versions of common git commands, works with above tab completion

bind 'set match-hidden-files off'

..stops cd [tab][tab] showing .DS_Store and such files, unless you do .[tab][tab] - this means I can do cat [tab] to select the only file visible file in the directory (instead of always getting .DS_Store and the file)

bind "\C-e":clear-screen # bind ^e to clear

..ctrl+l is quite a stretch with one hand, ctrl+e is easier

alias cds="cd;clear"

..basically resets the terminal (changes to $HOME, clears screen)

alias cd..="cd .."
alias ..="cd .."
alias ...="cd ../.."
alias ....="cd ../../.."

..allows typing ".." to go up a dir, "..." to go up two levels and so on, also corrects "cd.." which I seemed to type a lot

I also alias scr to "screen -xU" and a bunch of OS X specific stuff, like

## OS X specific
# makes top use less CPU time
alias ltop='top -F -R -o cpu'
# Sleeps machine
alias macsleep='osascript -e "tell application \"Finder\" to sleep"'

# (un)lock dock
alias kdock="killall -9 Dock"
alias dock-lock="defaults write com.apple.dock contents-immutable -bool true; kdock"
alias dock-unlock="defaults write com.apple.dock contents-immutable -bool false; kdock"

# Laptop sleep/hibernate thingy. on == "deep sleep", off == "quick sleep"
alias hibernateon='sudo pmset -a hibernatemode 1'
alias hibernateoff='sudo pmset -a hibernatemode 0'
link|improve this answer
.. ; ... ; .... can be generalized. see:stackoverflow.com/questions/3746/whats-in-your-bashrc/… – Chen Levy Sep 30 '09 at 10:49
1  
Ctrl+L clears the screen which is easier than typing clear or cls and pressing enter. – jamolkhon Sep 30 '09 at 10:56
presario - Good point, I had that alias because I was used to cmd.exe before starting to use bash, but I've not used the cls alias in years, so it's removed. Chen - that function doesn't quite seem the same, the aliases I use mean you just type ... to change up two directories, whereas the function requires typing cd ... – dbr Oct 1 '09 at 8:41
feedback

my ~/.bashrc file is very short; it has only the following in it:

if [ -d ~/.bashrc.d ]; then
    for file in $(/bin/ls ~/.bashrc.d/); do
        . "~/.bashrc.d/$file";
    done
fi

that lets me separate everything out into much more manageable pieces, instead of having aliases mixed in with environment variables mixed in with my prompt customizations.

link|improve this answer
The only problem with this method is you cannot (easily) specify the order of processing (for instance, if something is defined more than once). – threecheeseopera Nov 3 '10 at 3:29
useless use of ls? partmaps.org/era/unix/award.html#ls – lesmana Jan 18 '11 at 10:03
@threecheeseopera: actually, you can: you just number the files, as is common on debian derivatives. eg: 10first.sh 20second.sh 30third.sh 40etc.sh @lesmana: a good point; i did write this years ago when i was still a n00b, and i haven't touched it much since then. – joh6nn Feb 16 '11 at 16:52
feedback

I use bash but my login shell is set to sh and my .profile is set to start screen in reattach mode which starts bash. This way I can be disconnected at any time and not lose anything.

.profile

case $- in *i*)
  bin_bash=`/usr/bin/which bash`
  bin_screen=`/usr/bin/which screen`
  # commands for interactive use only
  if test -z $screen_lock
  then
    # commands for if no screen_lock is set
    screen_lock=locked
    export screen_lock
    mesg n
    if test -x $bin_screen
    then
      $bin_screen -xRR
      if test $? -eq 0
      then
        # if we succeeded running screen then exit the shell (log out sh)
        exit
      else
        if test $? -eq 1
        then
          # screen was suspended by the user
          echo "        !! ALERT !!      You have suspended $bin_screen."
          echo "        !! ALERT !!      Starting $bin_bash."
        else
          errcode=$?
          echo "        !! ERROR !!     $bin_screen failed to exit cleanly."
          echo "        !! ERROR !!     Error code: $errcode"
        fi
      fi
    else
      echo "    !! ERROR !!     $bin_screen cannot be executed."
    fi
    if test -x $bin_bash
    then
      $bin_bash
      if test $? -eq 0
      then
        # if we succeeded running bash
        exit
      else
        errcode=$?
        echo "  !! ERROR !!     $bin_bash failed to exit cleanly."
        echo "  !! ERROR !!     Your last command's Error code: $errcode"
      fi
    else
      echo "    !! ERROR !!     $bin_bash cannot be executed."
    fi
  fi
esac

.screenrc

escape          ^Xa
shell           /usr/pkg/bin/bash
shelltitle      '$ |bash'
startup_message off
nethack         on
# This line works well in color and black and white.
hardstatus      alwayslastline
                "%{=r wb} %H %{c}%Y-%m-%d %{y}%0c %{= bw} %{kg}%-Lw%?
                %?%{=r kg}%n%f* %t%?(%u)%?%{= kg}%+Lw%{bw} %{=r wb} %=::"

.bashrc

#invoked only on subshells:
bash_pref_file=bashrc
case $- in
  *i*)
    #The shell is interactive
    if [ -f ~/.bash_login ]; then
      source ~/.bash_login
    fi
    ;;
  *)
    case $TERM in
    xterm*)
     TERM=xterm-16color
     ;;
    esac
    ;;
esac

.bash_login

#       $NetBSD: dot.profile,v 1.1.2.1 2000/10/20 17:00:53 tv Exp $
#:set syntax=sh

PATH=$HOME/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/pkg/bin
PATH=${PATH}:/usr/pkg/sbin:/usr/games:/usr/local/bin:/usr/local/sbin
export PATH

EDITOR=vim
export EDITOR
EXINIT='set autoindent'
export EXINIT
PAGER=less
export PAGER
REPLYTO=my@gmail.com
export REPLYTO

source ~/.aliases

    # If this is an xterm set the title to user@host:dir
    case $TERM in
    xterm*)
        #This '\[..\]' nonprints setting the title ]2, and the icon ]1 names of an xterm
        export PS1='\[\e]2;\u@\h:\w\007\e]1;\h\007\]\u@\h:\w\$ '
        TERM=xterm-16color
        ;;
    screen*)
        export PS1='\u@\h:\w\$ '
        PROMPT_COMMAND='echo -n -e "\033k\033\134"'
        ;;
    *)
        export PS1='\u@\h:\w\$ '
        ;;
    esac

.aliases

alias vi="vim"
alias lust="env TERM=vt220 ssh $USER@lust.acm.---.edu"
alias pride="env TERM=vt220 ssh $USER@pride.acm.---.edu"
alias fury="env TERM=vt220 ssh $USER@fury.acm.---.edu"
alias slithy="env TERM=xterm-16color ssh $USER@slithy.toves.net"
alias pine="echo USE MUTT!"
alias lambda="tf lambda.moo.mud.org 8888"
alias stripM="perl -pi -e 's/\r\n?/\n/g'"
alias nospam='cat ~/procmail.log | tail -n 30 > ~/procmail.log ;JTARG=`perl -e '"'"'my ($d,$n)=(\`date +%Y%m\`,\`formail -s echo <~/Mail/junk |wc -l\`);chomp($d,$n);$n=~s/  */-/;print "$ENV{HOME}/Mail/junk$d$n";'"'"'`; cp ~/Mail/junk $JTARG; bzip2 $JTARG;unset JTARG;rm ~/Mail/junk;'
function packspam () { SPAMTARG=`perl -e 'my $f="'$@'";chomp($f);$n=\`formail -s echo <$f |wc -l\`;chop($n);$n=~s/  */-/;$f=~s/-x$//;print $f.$n;'`; mv $@ $SPAMTARG; bzip2 $SPAMTARG; unset SPAMTARG; }
alias wl="for((;;)); do clear;w;sleep 20;done"
alias w="clear;w -n;echo;last -10"
alias new7='for d in 7 6 5 4 3 2 1; do find /home/communal/ -mtime $d -type f;done'
function m () { mesg n; mutt $@; mesg y; }
alias mutt=m
alias doing='mesg n;perl -ne '\''chomp;$0=$_'\'';mesg y'
link|improve this answer
feedback

Truncate long lines

function ...() {
  local -i n;
  let n=$(tput cols)/2-3;
  sed -re "s/^(.{$n}).*(.{$n})$/\1 ... \2/"
}

use:

$ command-that-produce-long-line-output | ...
this is a short line
and this is a very very very very very ... very very very very very long line
and this is another very very very ver ... very very very very very long line
this line is not long enough to be truncated.
link|improve this answer
feedback

cd ...

function cd () {
  local -ri n=${#*};
  if [ $n -eq 0 -o -d "${!n}" -o "${!n}" == "-" ]; then
    builtin cd "$@";
  else
    local e="s:\.\.\.:../..:g";
    builtin cd "${@:1:$n-1}" $(sed -e$e -e$e -e$e <<< "${!n}");
  fi
}

use

 cd ...       # cd ../..
 cd ....      # cd ../../..
 cd ...../foo # cd ../../../../foo

etc...

link|improve this answer
feedback

I add pwd to my prompt, aliases for deep directories I use a lot as well as wordy commands.

I also keep things like CVSROOT, MANPATH etc in my .profile. The other thing I've got in my .profile is a bail out for systems that don't have bash (a pretty regular thing in my life). The switch example above for setting base paths might be better off in a .profile instead of .bashrc for this reason.

Here is the function I use to color the prompt (cribbed from somewhere else online), I use a white background.


function prompt {
    local WHITE="\[\033[1;37m\]"
    local GREEN="\[\033[0;32m\]"
    local CYAN="\[\033[0;36m\]"
    local GRAY="\[\033[0;37m\]"
    local BLUE="\[\033[0;34m\]"
    local BLACK="\[\033[0;1m\]"
    local RESET='\[\033[00m\]'
    export PS1="${GREEN}\u${CYAN}@${BLUE}\h:${CYAN}\w${GREEN} >$ ${RESET}"

}
link|improve this answer
feedback

My .bashrc is basically the default that comes with Ubuntu 8.04, with some added environment variables as needed for SQL Developer and SQLPLUS, among others. My .bash_aliases file gets longer by the day, mostly every combination of flags for ls, cdX aliases to go to specific points in my development tree, and some complex ssh tunnels so I don't have to remember which ports I need to open.

link|improve this answer
feedback

Historically this has been the most important part of my bashrc. I use it to set proper paths, e.g. ~/inst/$SYS_BASE/bin.

case `uname` in
IRIX64)
SYS_BASE=sgi
;;
SunOS)
SYS_BASE=sun
;;
Linux)
SYS_BASE=linux
;;
Darwin)
SYS_BASE=mac
;;
*)
SYS_BASE=unknown
;;
esac
link|improve this answer
feedback

I've always been a fancy profile whore, so I spent a lot of time getting this to look like I want it to. But since I got it the way I like it, I haven't changed it in 3 years.

link|improve this answer
Something seems to have eaten your files :-( – Annan Aug 7 '09 at 20:53
Our schools server is down for a little while since they are redoing our infrastructure. I'll look into hosting them elsewhere and update this soon. – icco Aug 19 '09 at 18:26
feedback

Aliases

# Typing "rm -f *~" is too risky
alias cleanup='rm -f *~; true'
alias vibashrc='vi ~/.bashrc; . ~/.bashrc'
alias sr='ssh -l root'

History

# Ignore lines w/ ls, cd, ...
export HISTIGNORE="ls:cd:[bf]g:exit"
# Ignore lines which begin with a space character and duplicate lines
export HISTCONTROL="ignoreboth"

Host completion: when typing @<TAB>

# Use our own file instead of /etc/hosts
export HOSTFILE="${HOME}/.hosts"
# Collect host names from SSH known hosts file
sed  's/\(.*\),.*/\1/; s/ .*//' ${HOME}/.ssh/known_hosts  | sort > ${HOME}/.hosts

Prompt

# Check if we are inside screen
if [ -n "${STY#*.}" ]; then
    export PS1='\[\033[01;34m\][\[\033[01;33m\]\u@\h-screen($WINDOW)\[\033[01;34m\]\W][\[\033[01;31m\]\j\[\033[01;34m\]]\$ \[\033[00m\]'
else
    export PS1='\[\033[01;34m\][\[\033[01;35m\]\u@\h\[\033[01;34m\] \W][\[\033[01;31m\]\j\[\033[01;34m\]]\$ \[\033[00m\]'
fi
link|improve this answer
feedback
alias ll='ls -l'
link|improve this answer
feedback

An alias for rm, to mv, using the trashit script. This has been a big life saver.

link|improve this answer
also see safe-rm.org.nz , or sudo apt-get install safe-rm. It's an awesome script that prevents you from doing stupid stuff like rm / -rf or rm /bin -rf – tester Jul 23 '11 at 3:57
feedback

My fingers hate moving, so here's a couple of my favorite aliases, based on some of my most-commonly-used commands:

alias ff='ls'
alias fff='ls -al'
alias cdd='cd ..'
mkdirr () { mkdir "$1" && cd "$1"; }

I don't have to move my hands from the home row to list a directory's contents, and I can just repeat the last letter of my command when I do a very common task like moving up a directory or creating a directory and changing to it at the same time.

link|improve this answer
feedback

I have aliases that help me with directory navigation and others that are specific for my project. In a sense, the command line becomes a DSL of sorts. Since I use Cygwin's Bash on Windows, I have a consistent shell across all machines. I can barely work on someone else's machine without my aliases!

I've blogged on some of the generic stuff here. I find them really useful and some (but not all) of my teammates pick it up on every project on which I work.

link|improve this answer
feedback

I usethis for my ANSI colored prompt including username and machine name: LS_COLORS='no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=01;32:.cmd=01;32:.exe=01;32:.com=01;32:.btm=01;32:.bat=01;32:.sh=00;32:.csh=00;32:.tar=01;31:.tgz=01;31:.arj=01;31:.taz=01;31:.lzh=01;31:.zip=01;31:.z=01;31:.Z=01;31:.gz=01;31:.bz2=01;31:.jpg=01;35:.gif=01;35:.bmp=01;35:.xbm=01;35:.xpm=01;35:*.tif=00;35:';

export LS_COLORS;
C_RED="\[\033[0;31m\]"
C_GREEN="\[\033[0;32m\]"
C_LIGHT_GRAY="\[\033[0;37m\]"
C_RESET="\[\033[0m\]"

C_BROWN="\[\033[0;33m\]"
C_BLUE="\[\033[0;34m\]"
C_PURPLE="\[\033[0;35m\]"
C_CYAN="\[\033[0;36m\] "
C_GRAY="\[\033[1;30m\]"
C_WHITE="\[\033[1;37m\]"
C_YELLOW="\[\033[1;33m\]"

C_LIGHT_BLUE="\[\033[1;34m\]"
C_LIGHT_CYAN="\[\033[1;36m\]"
C_LIGHT_PURPLE="\[\033[1;35m\]"
C_LIGHT_RED="\[\033[1; 31m\]"
C_LIGHT_GREEN="\[\033[1;32m\]"

export PS1="$C_LIGHT_GREEN[\u@\H $C_LIGHT_BLUE\w] $C_RESET"
link|improve this answer
feedback

I have a git repository for stuff I want on all my shells, where among other files, I have a .bash_shared file that I import from .bashrc.

Exact file name search:

alias f='find . -type f -name'

Fuzzy filename search (ff string matches *string*):

ff () {
    find . -type f -iname '*'"$@"'*' ;
}

ps aux | grep foo without listing the grep command:

psg () {
    FIRST=`echo $1 | sed -e 's/^\(.\).*/\1/'`
    REST=`echo $1 | sed -e 's/^.\(.*\)/\1/'`
    ps aux | grep "[$FIRST]$REST"
}
link|improve this answer
feedback
if [ x$TERM = xxterm ] || [ x$TERM = xxterm-color ] ; then
  export PS1='\[\e]0;\u@\h:\w/\007\]\[\e[1;32m\]:;\[\e[0m\] '
else
  export  PS1=":; "
end

Having :; as the prompt means I can triple-click a previous command to select the entire line and middle-button-paste it straight into another window (e.g. if I was not on the machine I thought I was on, or I want to try it in a different directory) without having to delete a $ or a # or a % on the front.

(The extra gubbins in the xterm case is just to put username, hostname, cwd in the window title bar)

How does it work? : is the "null command"; ; is the command separator

link|improve this answer
feedback
[ -z "$PS1" ] && return

export EMAIL="myemailaddress"

export EDITOR=vim

# Allow assigning paths to cd-able variables
shopt -s cdable_vars
export public="$HOME/Dropbox/Public"

PATH=$PATH:~/bin
export CDPATH='.:~:/usr/share/doc'
export FIGNORE='.git:.hg'

shopt -s extglob

export GIT_AUTHOR_NAME="My Name"
export GIT_AUTHOR_EMAIL=$EMAIL
export GIT_COMMITTER_NAME="My Name"
export GIT_COMMITTER_EMAIL=$EMAIL

export HISTCONTROL=$HISTCONTROL${HISTCONTROL+,}:erasedups:ignoreboth
export HISTIGNORE="[ \t]:&:ls:la:h:t:cd:exit:j:h:rm *:kill *"
export HISTFILE=~/.bash_history
export HISTSIZE=1600
export HISTFILESIZE=1600
shopt -s histappend histverify

shopt -s checkwinsize

# Space-triggered completion for '!'
bind Space:magic-space

[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"

# Prompt
force_color_prompt=yes
YELLOW_FG="\[$(tput setaf 3)\]"
BLUE_FG="\[$(tput setaf 4)\]"
MAGENTA_FG="\[$(tput setaf 5)\]"
RESET="\[$(tput sgr0)\]"
PS1="$BLUE_FG[\u@\h]$MAGENTA_FG \W $YELLOW_FG \$ >$RESET "

if [ -x /usr/bin/dircolors ]; then
    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

if [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
fi

# Aliases
alias emacs='#'
alias la='ls -A'
alias l='less'
alias gcl='google calendar list -u $EMAIL'
alias gca='google calendar add -u $EMAIL' 
alias gdu='google docs upload -u $EMAIL'
alias gdl='google docs list -u $EMAIL'
alias gdg='google docs get -u $EMAIL'
alias gtt='google tasks today --delimiter="," -u $EMAIL'
alias screen='screen -S $USER -T $TERM -s $SHELL'

# Wikipedia summary lookup
function wiki () {
    dig +short txt $1.wp.dg.cx
}

# Back up a file before opening in vim
function edbk () {
    cp $1{,.bk} && vim $1
}

# Archive handler
function unpack () {
    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 >unpack<" ;;
    esac
}

# Batch extension renamer (usage: ext_renamer php html)
function ext_renamer() {
   local fn
   for fn in *."$1"; do
     mv "$fn" "${fn%.*}"."$2"
   done
}
link|improve this answer
feedback

I'll be happy to answer any questions anyone has

#-------------------------------------------------------------
# Source global definitions (if any)
#-------------------------------------------------------------
if [ -f /etc/bashrc ]; then
    . /etc/bashrc # Read /etc/bashrc, if present.
fi

[ -z "$PS1" ] && return

#-------------------------------------------------------------
# Shell Options
#-------------------------------------------------------------
shopt -s checkhash
shopt -s checkwinsize
shopt -s cmdhist
shopt -s histappend histreedit histverify
export HISTCONTROL=ignoredups
export HISTSIZE=ignoredups

#-------------------------------------------------------------
# Colors
#-------------------------------------------------------------
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

#-------------------------------------------------------------
# The 'ls' family (this assumes you use a recent GNU ls)
#-------------------------------------------------------------
alias ls='ls --color'      # add colors for filetype recognition
alias la='ls -A'           # list all
alias ll="ls -l --group-directories-first"
alias lf='ls -F --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'

#-------------------------------------------------------------
# tailoring 'less'
#-------------------------------------------------------------
# Less Colors for Man Pages
export LESS_TERMCAP_mb=$'\E[01;31m'       # begin blinking
export LESS_TERMCAP_md=$'\E[01;38;5;74m'  # begin bold
export LESS_TERMCAP_me=$'\E[0m'           # end mode
export LESS_TERMCAP_se=$'\E[0m'           # end standout-mode
export LESS_TERMCAP_so=$'\E[38;5;246m'    # begin standout-mode - info box
export LESS_TERMCAP_ue=$'\E[0m'           # end underline
export LESS_TERMCAP_us=$'\E[04;38;5;146m' # begin underline
alias more='less'
export PAGER=less
# -e : Quit at end of file.
# -i : ingore case for all lowercase search
# -g : Highlight only last match for searches
# -q : Quiet the terminal bell
# -s : Squeeze multiple blank lines.
# -F : Quit if entire file fits on first screen
# -R : Output "raw" control characters
# -S : Chop long lines
# -X : Don't use termcap init/deinit strings
export LESS="-e -g -i -q -s -R -S"

# Make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"

#-------------------------------------------------------------
# spelling typos - highly personal and keyboard-dependent
#-------------------------------------------------------------
alias xs='cd'
alias moer='more'
alias moew='more'
alias mak='make'
alias male='make'
alias cd..='cd ..'
alias suod='sudo'

#-------------------------------------------------------------
# nice shortcuts
#-------------------------------------------------------------
alias ..='cd ..'
alias ....='cd ../..'
alias ......='cd ../../..'
alias ........='cd ../../../..'

alias mkdir='mkdir -p -v'
alias df='df -h'
alias du='du -h -c'
alias cls='clear'
alias nano='nano -W -m'
alias wget='wget -c'

alias home='cd ~/'
alias docs='cd ~/Documents'
alias downloads='cd ~/Downloads'

function gitmode()
{
    if [ -z $1 ] ; then
        return
    fi
    PREFIX="\[${yellow}\][GIT]"
    if [ $1 = 'on' ]; then
        alias pull='git pull'
        alias push='git push'
        alias commit='git commit -a'
        alias add='git add'
        alias publish='git publish'
        alias status='git status'
        OLD_PS1="$PS1"
        PS1="$PREFIX $PS1"
    elif [ $1 = 'off' ]; then
        unalias pull 2> /dev/null
        unalias push 2> /dev/null
        unalias commit 2> /dev/null
        unalias add 2> /dev/null
        unalias publish 2> /dev/null
        unalias status 2> /dev/null
        PS1="$OLD_PS1"
    fi
}

#-------------------------------------------------------------
# History Navigation and Manipulation
#-------------------------------------------------------------
bind '"\e[5~":history-search-backward' #pgup
bind '"\e[6~":history-search-forward'  #pgdn
alias hidethis='history -d $((HISTCMD-1))'
alias hideprev='history -d $((HISTCMD-2)) && history -d $((HISTCMD-1))'

#-------------------------------------------------------------
# Style
#-------------------------------------------------------------
function xtitle()      # Adds some text in the terminal frame.
{
    case "$TERM" in
        *term | rxvt)
            echo -n -e "\033]0;$*\007" ;;
        *)  
            ;;
    esac
}

# .. and functions
function man()
{
    for i ; do
        xtitle The $(basename $1|tr -d .[:digit:]) manual
        command man "$i"
    done
    default_title
}

default_title()
{
    xtitle `logname` on `hostname`
}


#-------------------------------------------------------------
# Make sure that login terms are blank after logout -- ubuntu specific?
#-------------------------------------------------------------
exit_()
{
    echo -ne "${nc}"
    clear;
}
[ $TERM == "linux" ] && trap exit_ EXIT


#-------------------------------------------------------------
# Handy Functions
#-------------------------------------------------------------
function extract()      # Handy Extract Program.
{
     if [ -f $1 ] ; then
         case $1 in
             *.tar.xz)    tar xvJf $1     ;;
             *.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     ;;
             *.txz)       tar xvJf $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
}

upinfo()
{
echo -ne "${green}$HOSTNAME ${red}uptime is ${cyan} \t ";uptime | awk /'up/ {print $3,$4,$5,$6,$7,$8,$9,$10}'
}

#-------------------------------------------------------------
# Prompt
#-------------------------------------------------------------

if [ -n "${DISPLAY%%:0*}" -o -z "$DISPLAY" ]; then
    REMOTE=true
else
    REMOTE=
fi

if [ $REMOTE ]; then
    HILIT=${red}   # remote machine
    HILIT2=${lightred}   # remote machine
else
    HILIT=${darkgray}  # local machine
    HILIT2=${lightgray}  # local machine
fi

if [ `whoami` == "root" ]; then
    PROMPT_CHAR="\$"
else
    PROMPT_CHAR=">"
fi


case "$TERM" in
    *term | rxvt)
        # xtitle shows user on host
        if [ $REMOTE ]; then  
            PS1="\[${HILIT}\]\h\[${HILIT2}\]:\w\[${HILIT}\]$PROMPT_CHAR\[${nc}\]"
        else
            PS1="\[${HILIT2}\]\w\[${HILIT}\]$PROMPT_CHAR\[${nc}\]"
        fi
        ;;
    *)
        # show user@host in prompt
        PS1="\[${green}\]\u\[${lightgray}\]@\[${HILIT}\]\h\[${lightgray}\]:\[${HILIT2}\]\w\[${red}\]$PROMPT_CHAR\[${nc}\]";;
esac

#-------------------------------------------------------------------------------
# MOTD!!
#-------------------------------------------------------------------------------
motd()
{
    [ `whoami` == "root" ] && return
    echo -e "${red}This is BASH\t\t ${cyan}${BASH_VERSION%.*}${nc}"
    echo -ne "${red}Today is:\t\t${cyan}" `date`; echo ""
    echo -e "${red}Kernel Information: \t${cyan}" `uname -smr`
    echo -ne "${cyan}";upinfo;echo ""
    echo -e "${cyan}"; cal -3
    if [ -x /usr/games/fortune ]; then
        echo -ne "${red}"
        /usr/games/fortune -s     # Makes our day a bit more fun.... :-)
    fi
}

default_title
motd
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.