Created
July 30, 2025 09:21
-
-
Save HirbodBehnam/72080c8054145fa384297c1da9323ef7 to your computer and use it in GitHub Desktop.
Download links from fuckingfast.co
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 | |
while read -r link; do | |
real_link=$(curl "$link" | grep "https://fuckingfast.co/dl/" | grep -oP '(?<=")[^"]*(?=")') | |
echo "Downloading $link from $real_link" | |
aria2c "$real_link" | |
done < "$1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment