You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
281 B

##
## @l_prefix@/etc/bash/profile -- Global GNU Bash Profile
##
# interactive prompt
if expr $- : ".*i.*" >/dev/null; then
PS1='\u@\h\$ '
fi
# environment permissions
umask 022
# history functionality
shopt -s histappend
HISTSIZE=100
HISTFILESIZE=100
HISTIGNORE="&"