最近centos宣布centos8可能是centos最后的一个版本了 以后的重心将转到centos steam 可能以后就没有稳定版了吧现在转到Debian了
$ ll
-bash: ll: command not found
没有ll这个命令,虽然也知道ll其实 是ls -l 这个命令的别名,但是总感觉不是很习惯,因为之前一直用centos的。
如果想让debian也支持 ll 命令的话则需要修改用户目录下面的.bashrc 配置文件
cd #进入当前用户目录
vim .bashrc #使用vim 编辑.bashrc配置文件
我们找到这样几行
# You may uncomment the following lines if you want `ls' to be colorized:
# export LS_OPTIONS='--color=auto'
# eval "`dircolors`"
# alias ls='ls $LS_OPTIONS'
# alias ll='ls $LS_OPTIONS -l'
# alias l='ls $LS_OPTIONS -lA'
我们之间把alias ll=’ls $LS_OPTIONS -l’前面的#号去掉,如下
# You may uncomment the following lines if you want `ls' to be colorized:
export LS_OPTIONS='--color=auto'
# eval "`dircolors`"
# alias ls='ls $LS_OPTIONS'
alias ll='ls $LS_OPTIONS -l'
alias l='ls $LS_OPTIONS -lA'
然后保存退出 这里得下次登录才会有效记得重新登录
Comments | NOTHING