$ 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‘ 然后保存退出