# DISABLE "DEVELOPER=yes" in /etc/make.conf to speed up! split -l$(($(wc -l ~/fetchlist |sed -e's/^ *//' -e's/ .*$//') / 4 + 1)) ~/fetchlist for a in xa*; do ( for b in `cat $a`; do echo "$a: $b"; ( cd $b; make DISABLE_VULNERABILITIES=yes fetch ) >>$a.out done)& done