Advertisement
britodfbr

download-pypi.sh

Aug 29th, 2014
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.23 KB | None | 0 0
  1. SITE=https://pypi.python.org/simple/brasil.gov.agenda;
  2. lynx --source $SITE | awk -F\" '{print $2}'|grep -v ^$|grep -v ^api-version$|while read a; do
  3.     mkdir `basename $SITE`;
  4.     wget -c $SITE/$a -P `basename $SITE`;
  5. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement