summaryrefslogtreecommitdiff
path: root/helpusage.go
blob: 2095629d55f5db4933cd0c3a74df61974f329109 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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)
}