Skip to content

Instantly share code, notes, and snippets.

@gjonespf
Last active November 6, 2016 05:21
Show Gist options
  • Select an option

  • Save gjonespf/3414a3de4b1adb75b347e5cf288b36da to your computer and use it in GitHub Desktop.

Select an option

Save gjonespf/3414a3de4b1adb75b347e5cf288b36da to your computer and use it in GitHub Desktop.
default bash profile
export EDITOR="nano -w"
export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ "
export CLICOLOR=1
export LSCOLORS=ExFxBxDxCxegedabagacad
alias ls='ls -lah --color'
alias lx='ls -lXB' # Sort by extension.
alias lk='ls -lSr' # Sort by size, biggest last.
alias lt='ls -ltr' # Sort by date, most recent last.
alias lc='ls -ltcr' # Sort by/show change time,most recent last.
alias lu='ls -ltur' # Sort by/show access time,most recent last.
if [ -f ~/.bash_profile_hostenv ]; then
. ~/.bash_profile_hostenv
fi
if [ -f ~/.bash_profile_custom ]; then
. ~/.bash_profile_custom
fi
export OTHERS="none"
export DOCKER_NODE="nodename"
export DOCKER_DC="home"
export DOCKER_BASEDOMAIN="example.co.nz"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment