Skip to content

Instantly share code, notes, and snippets.

@robbestad
Created June 30, 2013 21:03
Show Gist options
  • Select an option

  • Save robbestad/5896877 to your computer and use it in GitHub Desktop.

Select an option

Save robbestad/5896877 to your computer and use it in GitHub Desktop.
Get URL and Images
wget -O - 'http://www.elektroda.pl/' | \
grep -o '<img src=['"'"'"][^"'"'"']*['"'"'"]' | \
sed -e 's/^<img src=['"'"'"]//' -e 's/["'"'"']$//'
wget -O - http://stackoverflow.com | \
grep -o '<a href=['"'"'"][^"'"'"']*['"'"'"]' | \
sed -e 's/^<a href=["'"'"']//' -e 's/["'"'"']$//'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment