Created
May 21, 2016 08:35
-
-
Save cdolek/d84e93c069bdab9d7e546f282d604e54 to your computer and use it in GitHub Desktop.
starter bash_profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################################################################# | |
| export PS1='\[\033[01;31m\]\u\[\033[01;33m\]@\[\033[01;36m\]\h \[\033[01;33m\]\w \[\033[01;35m\]\$ \[\033[00m\]' | |
| umask 022 | |
| ############################################################################# | |
| eval "`dircolors`" | |
| ############################################################################# | |
| alias ls='ls $LS_OPTIONS' | |
| alias ll='ls $LS_OPTIONS -la' | |
| alias l='ls $LS_OPTIONS -lA' | |
| alias ..='cd ..' | |
| alias ...='cd ../..' | |
| alias s='ssh -l root' | |
| ############################################################################# | |
| export EDITOR="nano" | |
| export HISTFILESIZE=99999999 | |
| export HISTSIZE=99999999 | |
| export HISTCONTROL="ignoreboth" | |
| export HISTTIMEFORMAT="%d/%m/%y %T " | |
| export LS_OPTIONS='--color=auto -h' | |
| ############################################################################# | |
| alias dus="du -hsx * | sort -rh | head -10" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment