Mac默认是不支持ll命令的,为此我们需要做一些配置。
在~/.zshrc文件中加入如下命令:alias ll='ls -alF'
~/.zshrc
alias ll='ls -alF'
执行source ~/.zshrc命令,使修改生效。
source ~/.zshrc
若没有 .zshrc 文件,touch .zshrc新建即可。
touch .zshrc
To be a better man.