Advertisement
Guest User

Untitled

a guest
Jul 8th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.33 KB | None | 0 0
  1. #!/usr/bin/perl -w
  2. $x = 1;
  3. while ($x < 365) {
  4. if($x <= 9){ $x = "00".$x;}
  5. if($x >9 && $x < 100){ "0".$x;}
  6. system ("wget --load-cookies ~/.urs_cookies --save-cookies ~/.urs_cookies --keep-session-cookies -r -c -nH -nd -np -A HDF --content-disposition https://disc2.gesdisc.eosdis.nasa.gov/data/TRMM_L3/TRMM_3B42.7/1998/$x/");
  7. $x++;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement