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