create_hpc_bat.lsf 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. clear;
  2. redrawoff;
  3. status = layoutmode;
  4. slash = "/";
  5. if (operatingsystem == "windows") {slash = "\\";}
  6. curdir = pwd;
  7. ######################################################
  8. # Get local hostname
  9. #
  10. ######################################################
  11. if (fileexists("temppath.txt")) {
  12. temppath = read("temppath.txt");
  13. len = length(temppath);
  14. temppath = substring(temppath,1,len-2);
  15. cd(temppath);
  16. if (fileexists("hostname.txt")) {
  17. hostname = read("hostname.txt");
  18. len = length(hostname);
  19. hostname = substring(hostname,1,len-2);
  20. cd(curdir);
  21. } else {
  22. cd(curdir);
  23. break;
  24. }
  25. } else {
  26. break;
  27. }
  28. ######################################################
  29. files = splitstring(dir,endl);
  30. isCreated = false;
  31. fname = curdir+slash+hostname+"exec.bat";
  32. if (fileexists(fname)){rm(fname);}
  33. for(i=1:length(files)) {
  34. file_to_check = files{i};
  35. ?file_to_check+" --"+num2str(length(file_to_check))+"ext: "+fileextension(file_to_check);
  36. if(fileextension(file_to_check) == "") {?"!!!!!! dir";}
  37. hpc_file_check; # uses variables: file_to_check, fname
  38. }
  39. write(fname,"exit /b 0");
  40. cd(curdir);
  41. redrawon;