Skip to content

Instantly share code, notes, and snippets.

@furkanmustafa
Last active June 2, 2019 20:38
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save furkanmustafa/5560169 to your computer and use it in GitHub Desktop.
Save furkanmustafa/5560169 to your computer and use it in GitHub Desktop.
Simple Bash Script to download files from your put.io accountUsage: putio.sh "https://put-io-download-link"
#!/bin/bash
PUTIO_USERNAME="your put.io username"
PUTIO_PASSWORD="your put.io password"
wget --http-user=${PUTIO_USERNAME} --http-password=${PUTIO_PASSWORD} --content-disposition -c $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment