Skip to content

Instantly share code, notes, and snippets.

@ifthenelse
Created July 7, 2015 13:15
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 ifthenelse/066a12e0458535ca0aab to your computer and use it in GitHub Desktop.
Save ifthenelse/066a12e0458535ca0aab to your computer and use it in GitHub Desktop.
List of shell snippets
# Assuming the existence of a list of url, in a text file, get the file size of each url target (in Kb)
cat urls.txt | xargs -n 1 curl -sI | grep Content-Length | awk '{print $2/1000}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment