123456789101112131415161718192021222324252627282930 |
- export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$HOME/.local/bin
- export PAGER=less
- # Colored prompt - finally!
- NORMAL="\[\e[0m\]"
- GREEN="\[\e[1;32m\]"
- RED="\[\e[1;31m\]"
- YELLOW="\[\e[1;33m\]"
- export PS1="$GREEN\u@dockerhost [$YELLOW\w$GREEN]\$ $NORMAL"
- #export PS1='\h:\w\$ '
- umask 022
- for script in /etc/profile.d/*.sh ; do
- if [ -r $script ] ; then
- . $script
- fi
- done
- # Pwease good char support in console too...
- export LANG="en_US.UTF-8"
- export LC_ALL="en_US.UTF-8"
- # plz no shitty busybox vi
- export EDITOR="vim"
- # Aliases:
- alias ls='ls --color=auto'
- alias ll='ls -lhA'
- alias grep='grep --color'
|