Linux/Tips
내 .bashrc
Leo 리오
2011. 11. 28. 10:48
반응형
- # .bashrc
- #PATHes
- export PATH=~/local/bin/:~/local/bin/arm-2009q3/bin:~/project/out/host/linux-x86/bin:$PATH
- # don't put duplicate lines in the history. See bash(1) for more options
- # ... or force ignoredups and ignorespace
- HISTCONTROL=ignoredups:ignorespace
- # Source global definitions
- if [ -f /etc/bashrc ]; then
- . /etc/bashrc
- fi
- # User specific aliases and functions
- #ls
- alias 'ls=ls --color -a '
- alias 'l=ls --color -a '
- alias 'vi=vim -c "set cin" -c"set nu"'
- #cd
- alias 'cd....=cd ../..'
- alias 'cd..=cd ..'
- #grep
- alias 'grep=grep --color=auto -n'
- export LANG="en_us.UTF-8"
- #PS1='[\u@\h \W]\$ '
- #export PS1='\[\e[4;33m\][\u@\h \W]\$\[\e[0m\] '
- export PS1='\[\e[0;33m\][\u@\w]\$\[\e[0m\] '
- #for developing eclipse Plugin
- . ~/project/build/envsetup.sh
반응형