Skip to content

Instantly share code, notes, and snippets.

@wixb50
Last active October 20, 2016 04:40
Show Gist options
  • Save wixb50/bd386260df0aab72db05267a3defad4b to your computer and use it in GitHub Desktop.
Save wixb50/bd386260df0aab72db05267a3defad4b to your computer and use it in GitHub Desktop.
K=`curl -s http://www.symmz.com/sitemap_baidu.xml | ack -o 'http://www.symmz.com/\w+/\d+-\d+.html'`
for item in `echo $K`;do
ack -o 'http://img.symmz.com/images/\w+/\d{8}/\w+.jpg' html/`cd html && curl -s "$item" -O -w '%{filename_effective}' ` | xargs -L 1 bash -cx 'cd jpg && wget -c $0'
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment