FileDeleteCommand constructor
FileDeleteCommand()
Creates a new instance of the FileDeleteCommand class.
Implementation
FileDeleteCommand() {
argParser.addFlag('sudo', abbr: 's', negatable: false, help: 'Run as sudo');
argParser.addFlag('recursive', abbr: 'r', negatable: false, help: 'Delete recursively');
argParser.addFlag('force', abbr: 'f', negatable: false, help: 'Force delete');
argParser.addFlag('verbose', abbr: 'v', negatable: true, defaultsTo: true, help: 'Verbose output');
}