Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
// 2022-04-08 by Lion Raaz (raaz@molgen.mpg.de)
// This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.
// (CC BY-SA 4.0) https://creativecommons.org/licenses/by-sa/4.0/
// last update: 2022-04-27 by Lion Raaz
// rescue script in case the measure_nuclei script crashes to save the measured results
setBatchMode(false); // Now disable BatchMode since we are finished
updateResults(); // Update the results table so it shows the filenames
// Show a dialog to allow user to save the results file
outputDirectory = getDirectory("Choose a Directory to save the results.csv file");
saveAs("results",outputDirectory + "results_rescued.csv");
showMessage("Finish", "The available results are saved under:\n"+ outputDirectory + "results_rescued.csv");