Use the ll command under Mac, like linux

Use the ll command under Mac

open terminal

sudo vim ~/.bash_profile

#加入以下东西在 .bash_profile 文件中
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'

Then the source file

source ~/.bash_profile

Finish!

Guess you like

Origin blog.csdn.net/qq_46138492/article/details/128626530