1
0
Fork 0
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

33 Zeilen
706 B

##
## @l_prefix@/.bashrc -- Local Bash Profile
##
# provide user and host information in default prompt
PS1="\u@\h\$ "
# environment permissions
umask 022
ulimit -c 16384
# history functionality
shopt -s histappend
HISTSIZE=100
HISTFILESIZE=100
# various additional variables
export TMPDIR=/tmp
export TEMPDIR=$TMPDIR
export BLOCKSIZE=1024
# suck in the whole Bourne-Shell
# environment of OpenPKG hierarchy
eval `@l_prefix@/etc/rc --eval all env`
# make sure some non-standard but usually
# important executable directories are active
test -d /usr/ccs/bin && PATH="$PATH:/usr/ccs/bin"
test -d /usr/local/bin && PATH="$PATH:/usr/local/bin"
# path to us
BASH_ENV=$HOME/.bashrc