Mac解决 zsh: command not found: ll
文章目录
- Mac解决 zsh: command not found: ll
- 解决方法
解决方法
1.打开bash_profile 配置文件vim ~/.bash_profile2.在文件中添加配置:alias ll='ls -alF'键盘按下 I 键进入编辑模式3. alias ll='ls -alF'添加完配置后,按ESC键退出编辑模式输入 :wq 保存并退出4.刷新配置文件: source ~/.bash_profile5.vim ~/.zshrc6.加入:source ~/.bash_profile7.wq保存后:source ~/.zshrc