summaryrefslogtreecommitdiff
path: root/helpusage.go
diff options
context:
space:
mode:
authorGeorge Abbott <george@gabbott.dev>2023-11-03 19:14:28 +0000
committerGeorge Abbott <george@gabbott.dev>2023-11-03 19:14:28 +0000
commit499fc1ce2a1a98c26dc5060e483168a2f47ca840 (patch)
tree13305978e2cf4894999ecbe778e645f641568680 /helpusage.go
Commit allHEADmaster
Diffstat (limited to 'helpusage.go')
-rw-r--r--helpusage.go27
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)
+}