bashrc

Bourne-Again shell configuration files

.bashrc

#!/bin/sh # if running interactively if [ "$PS1" ]; then if [ -e /etc/profile ]; then source /etc/profile elif [ -e ~/.bash_login ]; then source ~/.bash_login fi fi # turn off XON/XOFF, but only for a tty tty > /dev/null && stty -ixon -ixoff ### Case insensitive completion shopt -s nocaseglob ### Bash completion functions if [ -f /etc/bash_completion ]; then source /etc/bash_completion fi ### Making sure tmux gets the correct TERM if [ $TMUX ]; then export TERM=xterm fi

.bash_login:

# alias ls='LC_ALL=POSIX /bin/ls' alias ll="ls -la" bind "set completion-ignore-case on" export EDITOR=/usr/bin/vi export HISTTIMEFORMAT='%Y%m%d%H%M%S' export PATH=$PATH:$HOME/bin: ### --- AIX work machine specific export CVSROOT=:extssh:hosntname.domain.tld/cvsroot function q() { if ! [ -z "$1" ]; then echo grep -i "$1" ~user/docs/q.txt | egrep -v "^#|^$" echo else true fi }