File: bashrc

package info (click to toggle)
monotone 1.0-6
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 20,708 kB
  • sloc: cpp: 84,765; sh: 6,787; perl: 837; makefile: 833; python: 517; lisp: 379; sql: 118; exp: 88; ansic: 52
file content (30 lines) | stat: -rw-r--r-- 699 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- shell-script -*-
# Use emacs key bindings
set -o emacs
# Use bash strict mode
#set -o posix
# Set the prompts
export PS1='@ '
export PS2='> '
# Configure readline
export INPUTRC=$srcdir/extra/bash_completion/inputrc
# Set dumb terminal
#export TERM=dummy
# Give us many columns
stty columns 4000
# Make sure to load the bash_completion package
if [ "$BASH_COMPLETION" = "" ]; then
    if [ -f /etc/bash_completion ]; then
	. /etc/bash_completion
    elif [ -f /usr/local/etc/bash_completion ]; then
	. /usr/local/etc/bash_completion
    else
	echo No bash completion package present.
	exit
    fi
fi
#
echo Current settings
echo pwd: $(pwd)
echo initial_dir: $initial_dir
echo srcdir: $srcdir