美文网首页
ll: command not found

ll: command not found

作者: PC_Repair | 来源:发表于2019-07-08 10:40 被阅读0次
  • ll 并不是 Linux 下一个基本的命令,它实际上是 ls -l 的一个别名。

  • Ubuntu 默认不支持命令 ll,必须用 ls -l,这样使用起来不是很方便。

如果要使用此命令,可以作如下修改:

  • vi ~/.bashrc:找到 alias ll='ls $LS_OPTIONS -l',去掉前面的#就可以了。(关闭原来的终端才能使命令生效)
    这样个人用户可以使用 ll 命令,当切换成超级用户后,使用 ll 命令时提示找不到命令,那是因为你只是修改了个人用户的配置,所以,切换成 root 后做相同的操作即可解决问题。

  • 提示:我们可以通过修改 ~/.bashrc 添加任何其他的命令别名。

操作如下:

  • vi ~/.bashrc 编辑文件
# ~/.bashrc: executed by bash(1) for non-login shells.

# Note: PS1 and umask are already set in /etc/profile. You should not
# need this unless you want different defaults for root.
# PS1='${debian_chroot:+($debian_chroot)}\h:\w\$ '
# umask 022

# 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'
#
# Some more alias to avoid making mistakes:
# alias rm='rm -i'
# alias cp='cp -i'
# alias mv='mv -i'
  • source ~/.bashrc:使修改生效

相关文章

网友评论

      本文标题:ll: command not found

      本文链接:https://www.haomeiwen.com/subject/eunnhctx.html