Skip to content

Instantly share code, notes, and snippets.

@hamidne
Created September 16, 2019 02:22
Show Gist options
  • Save hamidne/dbb4ebeca082d895b283acd6a8b4f7e6 to your computer and use it in GitHub Desktop.
Save hamidne/dbb4ebeca082d895b283acd6a8b4f7e6 to your computer and use it in GitHub Desktop.
timestamp=$(date +%s);
number=$(shuf -i 1-9 -n 1);
case $number in
1) url="http://dl.irangfx.com/2019/AdobeExtensionManagerCCAll.zip" ;; # 123 MB
2) url="http://dl.irangfx.com/2018/Adobe.Photoshop.CC.14.2.1.Portable.x86.x64.rar" ;; # 524 MB
3) url="http://dl.irangfx.com/2019/Adobe.Photoshop.CC.20.0.2.30.Mac_irangfx.com.rar" ;; # 1.86 GB
4) url="http://dl.irangfx.com/2018/Adobe.Photoshop.CC.19.1.3.49649.Mac.part1.rar" ;; # 1.07 GB
5) url="http://dl.irangfx.com/2018/Adobe.Photoshop.CC.19.1.3.49649.x64.part2.rar" ;; # 1.86 GB
6) url="http://dl.irangfx.com/background/25-Free-Blurred-Backgrounds.zip" ;; # 207 MB
7) url="http://dl.irangfx.com/premium/photo/lee_photo-Tribal-paper.irangfx.com.rar" ;; # 12 MB
8) url="http://dl.irangfx.com/premium/photo/Bokeh-Blur-Backgrounds-V3.irangfx.com.rar" ;; # 708 MB
9) url="http://dl.irangfx.com/premium/photo/Gold-Foil-Glitter-Textures,-Backgrounds-1502555_irangfx.com.rar" ;; # 117 MB
esac
wget -O "/tmp/file${timestamp}.rar" ${url}
rm "/tmp/file${timestamp}.rar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment