Created
January 3, 2014 14:27
-
-
Save ryo1kato/8238679 to your computer and use it in GitHub Desktop.
My minimal .bashrc file for new environment.
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
| . /etc/skel/.bashrc | |
| set -o noclobber | |
| PS1='$ ' | |
| ######## aliases ####### | |
| if type lv >/dev/null 2>&1 | |
| then | |
| alias lv=less | |
| fi | |
| # alias ls='ls -F --color' # this is default in /etc/skel for most distro | |
| alias ll='ls -l' | |
| alias la='ls -A' | |
| aliasl lla='ls -lA' | |
| alias ..='cd ..' | |
| alias ...='cd ../..' | |
| alias ....='cd ../../..' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment