卸载使用brew安装的mongodb脚本
这个用来卸载Mac使用brew安装的mongodb。
#!/usr/bin/env sh
# 检查mongo是否在运行中
launchctl list | grep mongo
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist
launchctl remove homebrew.mxcl.mongodb
pkill -f mongod
rm -f ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist
brew uninstall mongodb
# 再次检查是否已经卸载
ls -al /usr/local/bin/mong*
ls -al ~/Library/LaunchAgents