-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
55 lines (47 loc) · 967 Bytes
/
main.go
File metadata and controls
55 lines (47 loc) · 967 Bytes
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
51
52
53
54
55
package main
import (
"fmt"
"os"
"os/exec"
"github.com/antonmedv/jout/cmd/ls"
"github.com/antonmedv/jout/cmd/ps"
)
func main() {
os.Exit(run(os.Args))
}
func run(args []string) int {
if len(args) < 2 {
usage()
return 2
}
var code int
var err error = nil
switch args[1] {
case "ls":
code, err = ls.Run(args[2:])
case "ps":
code, err = ps.Run(args[2:])
case "-h", "--help", "help":
usage()
return 0
default:
fmt.Fprintf(os.Stderr, "unknown subcommand: %s\n", args[1])
usage()
return 2
}
if err != nil {
if exitErr, ok := err.(*exec.ExitError); ok {
code = exitErr.ExitCode()
fmt.Fprintf(os.Stderr, string(exitErr.Stderr))
} else {
fmt.Fprintf(os.Stderr, "%s\n", err)
}
}
return code
}
func usage() {
fmt.Fprintln(os.Stderr, "jout — Run commands, get JSON.")
fmt.Fprintln(os.Stderr, "usage:")
fmt.Fprintln(os.Stderr, " jout ls [-P|-H|-L] [path...]")
fmt.Fprintln(os.Stderr, " jout ps [--user USER]")
}