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) }