# ~/.bashrc # if not running interactively, don't do anything [ -z "$PS1" ] && return # prompt PS1="\[\033[01m\]\u@\h:\[\e[01;34m\]\w\[\e[37m\]\$\[\e[00m\] " # title PS1="\[\e]0;\u@\h:\w\a\]$PS1" # alias alias q="exit" alias diff="diff --color=auto" alias grep="grep --color=auto" alias ls="ls --color=auto" alias ll="ls -AF1" alias lll="ls -AFlh" # history HISTCONTROL="ignoreboth:erasedups" HISTFILESIZE="-1" HISTIGNORE="q" shopt -s histappend PROMPT_COMMAND=${PROMPT_COMMAND:+${PROMPT_COMMAND%;}; }"history -a; history -c; history -r;" # bash completion if ! shopt -oq posix; then if [ -f /usr/share/bash-completion/bash_completion ]; then . /usr/share/bash-completion/bash_completion elif [ -f /etc/bash_completion ]; then . /etc/bash_completion fi fi # osc7 osc7_cwd() { local strlen=${#PWD} local encoded="" local pos c o for (( pos=0; pos