给linuxshell添加ll命令⽀持
有的linux发⾏版默认添加了ll命令,也就是ls -l的缩写形式的⽀持,⼤⼤提⾼了命令⾏的输⼊效率。
但有部分linux发⾏版默认没有加⼊ll⽀持,也发现⼀些新⼿⽤户不清楚怎么增加这个命令,这⾥介绍下修改的⽅法,以bash为例。在⽤户的根⽬录下有个隐藏⽂件.bashrc,打开后,⼀般会有以下这段代码
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
fi
在alias ls='ls --color=auto'后⾯增加⼀⾏alias ll='ls -l --color=auto'就⾏了
linux命令及shell编写修改后的代码如下
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
alias ll='ls -l --color=auto'
fi
当然,这是针对单个⽤户的修改,要给所有⽤户增加这个别名,可以对/etc下的全局脚本配置⽂件做修改。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论