ubuntu普通用户 提示符只有$, 不能使用tab,常用alias无

原因为ubuntu 默认为dash
echo $SHELL
解决:
sudo usermod -s /bin/bash admin

/etc/profile下添加

alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l.='ls -d .* --color=auto'
alias ll='ls -l --color=auto'
alias ls='ls --color=auto'
alias vi='vim'
alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'

猜你喜欢

转载自www.cnblogs.com/bowanghou/p/12200459.html
今日推荐