76e878a8af
and less less-options
45 lines
1.2 KiB
Bash
45 lines
1.2 KiB
Bash
#!/bin/bash -x
|
|
# ~/.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
|
|
case $- in
|
|
*i*) ;;
|
|
*) return;;
|
|
esac
|
|
|
|
# check the window size after each command and, if necessary,
|
|
# update the values of LINES and COLUMNS.
|
|
shopt -s checkwinsize
|
|
|
|
# If set, the pattern "**" used in a pathname expansion context will
|
|
# match all files and zero or more directories and subdirectories.
|
|
#shopt -s globstar
|
|
|
|
# make less more friendly for non-text input files, see lesspipe(1)
|
|
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
|
|
|
|
# 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 ! 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
|
|
|
|
if [ -d /etc/bash_completion.d ]
|
|
then
|
|
for file in /etc/bash_completion.d/* ; do
|
|
source "$file"
|
|
done
|
|
fi
|
|
|
|
if [[ -f $HOME/.bash_profile ]]; then
|
|
source $HOME/.bash_profile
|
|
fi
|
|
|
|
cd $HOME
|