Skip to content

Instantly share code, notes, and snippets.

@CallMarl
Created March 7, 2022 17:39
Show Gist options
  • Save CallMarl/eb7cf0cd07244b8c7f177a5dc45446c5 to your computer and use it in GitHub Desktop.
Save CallMarl/eb7cf0cd07244b8c7f177a5dc45446c5 to your computer and use it in GitHub Desktop.
DL
#!/bin/bash
count=1
while [ $count -lt 10 ]
do
wget https://share.vx-underground.org/Conti/Training%20Material%20Leak/conti.7z.00$count
((count++))
done
while [ $count -lt 100 ]
do
wget https://share.vx-underground.org/Conti/Training%20Material%20Leak/conti.7z.0$count
((count++))
done
while [ $count -lt 267]
do
wget https://share.vx-underground.org/Conti/Training%20Material%20Leak/conti.7z.$count
((count++))
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment