# base-files version 3.0-3 # User dependent .bashrc file # See man bash for more options... # Don't wait for job termination notification # set -o notify # Don't use ^D to exit # set -o ignoreeof # Don't put duplicate lines in the history. # export HISTCONTROL=ignoredups # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi export SHELL=/bin/bash # export PATH=/usr/X11R6/bin:$PATH export PS1="$HOSTNAME:\w$ " export LANG='ja_JP.SJIS' if [ -n ${DISPLAY} ]; then export DISPLAY=localhost:0.0 fi if [ ! -n "${TERM}" ]; then TERM=cygwin fi # Some example alias instructions alias less='less -r' alias rm='rm -i' # alias whence='type -a' # alias ls='ls -F --color=tty' # alias dir='ls --color=auto --format=vertical' # alias vdir='ls --color=auto --format=long' alias ls='ls --show-control-char' alias ll='ls -la' alias la='ls -Fa' # alias l='ls -CF' # Some example functions # function settitle() { echo -n "^[]2;$@^G^[]1;$@^G"; }