From 499fc1ce2a1a98c26dc5060e483168a2f47ca840 Mon Sep 17 00:00:00 2001 From: George Abbott Date: Fri, 3 Nov 2023 19:14:28 +0000 Subject: Commit all --- helpusage.go | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 helpusage.go (limited to 'helpusage.go') 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) +} -- cgit v1.2.1