定期更新/升级安装的软件


brew安装的软件更新

brew upgrade 
brew update 

vim 插件更新

:PluginUpdate

git项目更新

定义一个函数,并执行 pull

function pull(){
  ls -d */ |while read dir;do
    cd ${dir}
      echo "==========${dir}==========="
   git gc; git pull -p; git clean -f *.flattened-pom.xml; git status;
   cd -
  done
}

博客主题更新

node 服务更新

npm 更新

idea 插件更新

iterm2 更新


评论