解决macbook终端无法使用ll命令
2024-01-16 本文已影响0人
爱的旋转体
image.png
解决方法:将ll作为一个别名即可。
cd ~
vi .bash_profile
在.bash_profile文件添加
alias ll='ls -alF'
刷新.bash_profile文件
source .bash_profile
image.png
解决方法:将ll作为一个别名即可。
cd ~
vi .bash_profile
在.bash_profile文件添加
alias ll='ls -alF'
刷新.bash_profile文件
source .bash_profile