Skip to content

Instantly share code, notes, and snippets.

@cdolek
Created May 21, 2016 08:35
Show Gist options
  • Select an option

  • Save cdolek/d84e93c069bdab9d7e546f282d604e54 to your computer and use it in GitHub Desktop.

Select an option

Save cdolek/d84e93c069bdab9d7e546f282d604e54 to your computer and use it in GitHub Desktop.
starter bash_profile
#############################################################################
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