-
-
Save rokibhasansagar/2f9c241ec6a16acb7a76053281a34d5c to your computer and use it in GitHub Desktop.
Bash script to download files from gofile.io
This file contains hidden or 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 | |
| id=`sed -E 's/.*gofile.io\/d\/(\w*?)/\1/' <<< $1` | |
| echo "Downloading $id" | |
| server=`curl -s https://apiv2.gofile.io/getServer?c=$id | jq -r '.data.server'` | |
| files=`curl -s https://$server.gofile.io/getUpload?c=$id | jq '.data.files'` | |
| for key in `jq 'keys | .[]' <<< $files`; do | |
| file=`jq ".[$key]" <<< $files` | |
| url=`jq -r '.link' <<< $file` | |
| name=`jq -r '.name' <<< $file` | |
| echo | |
| echo "Downloading $name" | |
| curl $url -o "$name" | |
| done | |
| echo | |
| echo | |
| echo "Note: gofile.io is entirely free with no ads," | |
| echo "you can support it at https://gofile.io/donate" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment