alias

iccid·2021년 10월 15일
0

Linux

목록 보기
3/5

~/.bashrc

alias ll='ls -al --color=auto'
alias u='cd ..'
alias uu='cd ../..'
alias ls='ls --color=auto'
alias grep='grep --exclude-dir=.svn -I -i'

# make scrollbar / wheel scrolling work when running screen in gnome-terminal (or other)
if [ "$TERM" = "xterm" ]; then
  export TERM=vt100
fi

0개의 댓글