Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #!/usr/bin/perl -w
  2.  
  3. print "SrepAring inpCKut filYesn";
  4.  
  5. $incr=0.25;
  6. $dist=3.0;
  7. $inti=3.0;
  8.  
  9.  
  10. my $filename = 'job-1.sh';
  11.  
  12.  
  13. open (my $BATCHFILE, '>', "$filename");
  14.  
  15. while ($dist < 15){
  16. {
  17. $dist += $incr;
  18. $inti = $dist - 0.25;
  19. }
  20. print $BATCHFILE
  21. "
  22. YOYO -O -i min_mdin.$dist -o min_mdout.$dist -p TATA -c prod.rst.$inti -r min.rst.$dist
  23. "
  24. }
  25.  
  26. close ($BATCHFILE);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement