blob: c65edb16e4064ffe8f5420c336a57e4bbd96a591 (
plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
package main
import (
"os"
"io"
"fmt"
"golang.flu0r1ne.net/planr/cmd/planr/sub"
)
const (
VERSION = "0.0.1"
)
func printUsage(w io.Writer) {
fmt.Fprintf (w, "usage: %s command args ... \n", os.Args[0])
fmt.Fprintln(w, " help ")
fmt.Fprintln(w, " version ")
fmt.Fprintln(w, " build ")
fmt.Fprintln(w, " evaluate ")
}
func dieUsage() {
printUsage(os.Stderr)
os.Exit(1)
}
func main() {
if len(os.Args) < 2 {
dieUsage()
}
subcommand := os.Args[1]
subargs := os.Args[2:]
switch subcommand {
case "version":
fmt.Printf("%s\n", VERSION)
case "build":
sub.Build(subargs)
case "evaluate":
sub.Evaluate(subargs)
case "help", "-h", "-help", "--help":
printUsage(os.Stdout)
default:
fmt.Fprintf(os.Stderr, "unrecognized command %s\n", subcommand)
dieUsage()
}
}
|