美文网首页
Mac brew 常用命令

Mac brew 常用命令

作者: ToQuery | 来源:发表于2017-05-31 17:34 被阅读0次
    • 查看brew的帮助
    brew –help
    
    • 安装软件
    brew install git
    
    • 卸载软件
    brew uninstall git
    
    • 搜索软件
    brew search git
    
    • 显示已经安装软件列表
    brew list
    
    • 更新软件,把所有的Formula目录更新,并且会对本机已经安装并有更新的软件用*标明。
    brew update
    
    • 更新某具体软件
    brew upgrade git
    
    • 显示软件内容信息
    brew info git
    
    • 用浏览器打开
    brew home
    
    • 显示包依赖
    brew deps 
    
    • 显示包的依赖树
    brew deps --installed --tree
    
    brew server
    
    • 删除程序,和upgrade一样,单个软件删除和所有程序老版删除。
    brew cleanup git 
    brew cleanup
    
    • 查看那些已安装的程序需要更新
    brew outdated
    

    相关文章

      网友评论

          本文标题:Mac brew 常用命令

          本文链接:https://www.haomeiwen.com/subject/abejfxtx.html