Last active
November 6, 2016 05:21
-
-
Save gjonespf/3414a3de4b1adb75b347e5cf288b36da to your computer and use it in GitHub Desktop.
default 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 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 | |
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 OTHERS="none" |
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 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