Posts

Showing posts from December, 2010

a shell script to download android source

#!/bin/bash repo sync while [ $? != '0' ]; do         repo sync done exit 0 以前看见过别人写个一个这样的脚本,最近下载gingerbread,repo sync老是不稳定,用上面的脚本就方便多了。