You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 29, 2019. It is now read-only.
for i in `seq -w 0 99`; do grep "$i\\.nxml" xml-urls > xml-urls-$i; done
mkdir xml
pushd xml
killall -9 xargs; killall wget
for i in ../xml-urls-*; do (num=${i#../xml-urls-}; mkdir -p $num && cd $num && xargs wget -qc < <((cat ../$i ; ls |sed 's,^,http://pmc.jensenlab.org/pmcid/,')|sort|uniq -u) )& done
for i in `seq -w 0 99`; do grep "$i\\.tar\\.gz" targz-urls > targz-urls-$i; done
mkdir targz
pushd targz
killall -9 xargs; killall wget
for i in ../targz-urls-*; do (num=${i#../targz-urls-}; mkdir -p $num && cd $num && xargs wget -qc < <((cat ../$i ; ls |sed 's,^,http://pmc.jensenlab.org/pmcid/,')|sort|uniq -u) )& done