习惯了 Linux 下的 ll 命令,Mac 终端没有这个命令很不舒服。可以将 ll 别名解决这个问题:
cd ~
vim .bash_profile
alias ll='ls -alF'
source .bash_profile