30 lines
705 B
Nim
30 lines
705 B
Nim
|
import argparse
|
||
|
|
||
|
type
|
||
|
NorgArgs* = object
|
||
|
config_file*: string
|
||
|
borg_cmd*: string
|
||
|
others*: seq[string]
|
||
|
|
||
|
var norg_args*: NorgArgs = NorgArgs()
|
||
|
|
||
|
proc parseArgs*() =
|
||
|
var p = newParser:
|
||
|
option("-c", "--config", help="Config file to use", required = true)
|
||
|
arg("borg_cmd", default=some("backup"))
|
||
|
arg("others", nargs = -1)
|
||
|
try:
|
||
|
var opts = p.parse(commandLineParams())
|
||
|
norg_args.config_file = opts.config
|
||
|
norg_args.borg_cmd = opts.borg_cmd
|
||
|
norg_args.others = opts.others
|
||
|
|
||
|
except ShortCircuit as err:
|
||
|
if err.flag == "argparse_help":
|
||
|
echo err.help
|
||
|
quit(1)
|
||
|
except UsageError:
|
||
|
echo p.help
|
||
|
stderr.writeLine getCurrentExceptionMsg()
|
||
|
quit(1)
|