diff options
Diffstat (limited to 'helpusage.go')
-rw-r--r-- | helpusage.go | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/helpusage.go b/helpusage.go new file mode 100644 index 0000000..2095629 --- /dev/null +++ b/helpusage.go @@ -0,0 +1,27 @@ +package main + +import ( + "fmt" + "os" +) + +func usage() { + fmt.Println(`bt-splitsheet +Usage: + bt-splitsheet (FLAGS) FILE + +Flags: + -h, --help Display this help message then exit. + -v, --version Display version info then exit. + -d, --directory DIR Pass the name of the directory to store in instead of + Split-FILE. + -t, --time Output the time taken. +`) + os.Exit(-1) + +} + +func version() { + fmt.Println("bt-splitsheet: v 0.0.1") + os.Exit(-1) +} |