Mac下ll命令 command not found

打开cmd

cd ~
vim .bash_profile

按键 i 进入编辑模式  文末追加 如果没有就是新加

alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'

esc wq  回车 保存

继续执行命令 让脚本生效

source .bash_profile

猜你喜欢

转载自blog.csdn.net/mp624183768/article/details/106165951