30 lines
505 B
Bash
30 lines
505 B
Bash
# .bash_profile
|
|
|
|
# Get the aliases and functions
|
|
if [ -f ~/.bashrc ]; then
|
|
. ~/.bashrc
|
|
fi
|
|
|
|
# User specific environment and startup programs
|
|
export NLS_LANG=AMERICAN_AMERICA.AL32UTF8
|
|
if [ "$TERM" = "" ]
|
|
then
|
|
eval ` tset -s -Q -m ':?hp' `
|
|
else
|
|
eval ` tset -s -Q `
|
|
fi
|
|
|
|
stty erase "^H" kill "^U" intr "^C" eof "^D"
|
|
stty hupcl ixon ixoff
|
|
|
|
PATH=$PATH:$HOME/.local/bin:$HOME/bin
|
|
export PATH
|
|
set -u
|
|
trap "echo 'logout'" 0
|
|
stty erase ^?
|
|
|
|
# Set up the shell variables:
|
|
EDITOR=vi
|
|
export EDITOR
|
|
/home/jetty/psc.sh
|