-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.go
76 lines (63 loc) · 1.4 KB
/
main.go
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package main
import (
"flag"
"fmt"
"io/ioutil"
"os"
)
const versionString = "fstabfmt 1.2.0"
func usage() {
fmt.Print(versionString + `
Usage: fstabfmt [-i] [-s NUM] [FILE]
fstabfmt formats /etc/fstab files.
It can either read from stdin and print to stdout
or modify the given file if the -i flag is used.
-h, --help Display this help
-i Modify the given file
-s, --spaces NUM Specify the number of spaces used between fields
-v, --version Display the current version
`)
}
func main() {
var (
data []byte
err error
filename = "-"
modifyFile bool
showVersion bool
spaces int
)
flag.Usage = usage
flag.IntVar(&spaces, "s", 2, "")
flag.IntVar(&spaces, "spaces", 2, "")
flag.BoolVar(&showVersion, "v", false, "")
flag.BoolVar(&showVersion, "version", false, "")
flag.BoolVar(&modifyFile, "i", false, "")
flag.Parse()
if showVersion {
fmt.Println(versionString)
return
}
if len(flag.Arg(0)) > 0 {
filename = flag.Arg(0)
}
if filename == "-" {
data, err = ioutil.ReadAll(os.Stdin)
} else {
data, err = ioutil.ReadFile(filename)
}
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
formatted := format(data, spaces)
if !modifyFile || filename == "-" {
fmt.Print(string(formatted))
} else {
err = ioutil.WriteFile(filename, formatted, 0644)
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}
}