shell脚本下载webkit夜间构建

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本下载webkit夜间构建相关的知识,希望对你有一定的参考价值。

  1. #!/bin/sh
  2.  
  3. tmpdir=/tmp/webkit-nightly
  4. URL=$(curl http://nightly.webkit.org/ | grep dmg | head -1 | perl -pe 's/.*(http.*dmg).*/$1/')
  5. FILE=$(basename $URL)
  6. mkdir -p $tmpdir &&
  7. cd $tmpdir &&
  8. curl $URL --remote-name &&
  9. hdiutil attach -quiet $tmpdir/$FILE &&
  10. mv /Applications/WebKit.app ~/.Trash/WebKit-`date +%Y-%m-%d_%H-%M-%s`.app/ &&
  11. cp -R /Volumes/WebKit/WebKit.app /Applications/ &&
  12. hdiutil detach -quiet /Volumes/WebKit &&
  13. echo Installed $FILE
  14.  

以上是关于shell脚本下载webkit夜间构建的主要内容,如果未能解决你的问题,请参考以下文章

如何从 Web 服务器调用本地 shell 脚本?

Shell脚本

shell脚本

12.1脚本

shell脚本速成

linux下shell脚本命令