| 12345678910111213141516171819 |
- ##
- ## @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="&"
|