parser.addFlag('help',abbr:'h',help:'Prints help info');
finalparsedResults=parser.parse(args);
if(parsedResults.flag("help")){
stdout.writeln(parser.usage);
return(success:false,file:null);
}
finalinputFilePath=parsedResults.option('input');
if(inputFilePath==null){
throwException('No valid input provided.');
}
finalinputFile=File(inputFilePath);
if(!inputFile.existsSync()){
stdout.writeln(
'Provided `$inputFilePath`, but it does not exist. Would you like to start with the template?\n\t($templateResumePath copied to $inputFilePath)\n(y/n): ',