解决MAC报错-bash: ll: command not found

1.使用 ll 命令提示如下

-bash: ll: command not found

2.解决

# 编辑.bash_profile文件

$ sudo vim ~/.bash_profile
# 加入以下内容

alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
# 保存之后重新加载

source ~/.bash_profile

发表回复