Simple Bash Script to download files from your put.io accountUsage: putio.sh "https://put-io-download-link"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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