df -h 查看mac磁盘使用情况
find <路径> -name <文件名>
du -sh 查看当前文件夹大小
du -sh * 查看当前文件夹内文件和目录大小
chsh -s /bin/bash 切换bash
chsh -s /bin/zsh 切换zsh
按照如上修改了~/.bash_profile文件发现无效,并且提示 zsh: command not found: homestead 那么肯定是安装了zsh的缘故,因为安装zsh,~/.bash_profile就不会被执行,解决办法如下:
1.打开vim ~/.zshrc 将你要配置到环境变量配置到该文件中即可
2.打开vim ~/.zshrc添加source ~/.bash_profile ,这样~/.bash_profile配置的环境变量同样有效