Skip to content

Instantly share code, notes, and snippets.

@terales
Last active February 7, 2018 06:38
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 terales/e1d2c76999ddf62694b5f31cead318c8 to your computer and use it in GitHub Desktop.
Save terales/e1d2c76999ddf62694b5f31cead318c8 to your computer and use it in GitHub Desktop.
An example of downloading file from Socatar.com
// cURL save image to your current folder
curl https://socatar.com/github/terales/50-50 -o terales.jpg
// Windows via PowerShell, save image to your Desktop
Invoke-WebRequest https://socatar.com/github/terales/50-50 -OutFile "$([Environment]::GetFolderPath("Desktop"))\terales.jpg"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment