misc: small fix or general refactoring i did not bother commenting

This commit is contained in:
evilsocket 2018-02-11 19:32:44 +01:00
parent 00cc8bce89
commit ae81bb8606

View file

@ -21,8 +21,8 @@ func ParseOptions() (Options, error) {
Silent: flag.Bool("silent", false, "Suppress all logs which are not errors."),
NoHistory: flag.Bool("no-history", false, "Disable interactive session history file."),
Commands: flag.String("eval", "", "Run one or more commands separated by ; in the interactive session, used to set variables via command line."),
CpuProfile: flag.String("cpuprofile", "", "Write cpu profile `file`."),
MemProfile: flag.String("memprofile", "", "Write memory profile to `file`."),
CpuProfile: flag.String("cpu-profile", "", "Write cpu profile `file`."),
MemProfile: flag.String("mem-profile", "", "Write memory profile to `file`."),
}
flag.Parse()