Last active
October 17, 2024 08:25
-
-
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"
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