Skip to content

Instantly share code, notes, and snippets.

@bgstack15
Created December 6, 2017 15:46
Show Gist options
  • Save bgstack15/bb1b8aaa5f49e4bfadc2775eca673c77 to your computer and use it in GitHub Desktop.
Save bgstack15/bb1b8aaa5f49e4bfadc2775eca673c77 to your computer and use it in GitHub Desktop.
Get hrefs from html
#!/bin/sh
# read stdin
grep -oE 'href=\".+\"' | sed -r -e 's/^href=\"//g;' -e 's/\"\s*$//;'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment