1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
CmdLineOptions = BaseTask:new()
local function vname()
return "1.0"
end
function CmdLineOptions:execute(myTable)
local masterTbl = masterTbl()
local Optiks = require("Optiks")
local usage = "Usage: findcmd [options] cmd"
local cmdlineParser = Optiks:new{usage=usage,version=vname(), error = Error}
cmdlineParser:add_option{
name = {'--pathOnly'},
dest = 'pathOnly',
action = 'store_true',
help = 'return just the path without the command',
}
local optionTbl, pargs = cmdlineParser:parse(arg)
for v in pairs(optionTbl) do
masterTbl[v] = optionTbl[v]
end
masterTbl.pargs = pargs
end
|