Skip to content

Instantly share code, notes, and snippets.

@ATRescue
Last active June 28, 2019 12:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ATRescue/ef8c656542f6a8a392db3415055980a6 to your computer and use it in GitHub Desktop.
Save ATRescue/ef8c656542f6a8a392db3415055980a6 to your computer and use it in GitHub Desktop.
Simple “pgtitle” function – find out the title of a page immediately.
function pgtitle { curl -s "$@" | grep -ioe "<title>.*</title>" | sed -r "s#</?title>##g" ;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment