diff options
Diffstat (limited to 'cli_args.go')
-rw-r--r-- | cli_args.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli_args.go b/cli_args.go index ecbfa3a..114a27e 100644 --- a/cli_args.go +++ b/cli_args.go @@ -176,6 +176,8 @@ func parseCliOpts() (args argContainer) { flagSet.StringVar(&args.force_owner, "force_owner", "", "uid:gid pair to coerce ownership") flagSet.StringVar(&args.trace, "trace", "", "Write execution trace to file") + // -e, --exclude + flagSet.Var(&args.exclude, "e", "Alias for -exclude") flagSet.Var(&args.exclude, "exclude", "Exclude relative path from reverse view") flagSet.IntVar(&args.notifypid, "notifypid", 0, "Send USR1 to the specified process after "+ |