forked from mkouhei/gosh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
55 lines (46 loc) · 1.43 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
package main
/*
Copyright (C) 2014,2015 Kouhei Maeda <mkouhei@palmtb.net>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import (
"flag"
"fmt"
)
var goVer string
var version string
var showVersion = flag.Bool("version", false, "showVersion")
var license = `Gosh %s
Copyright (C) 2014,2015 Kouhei Maeda
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software, and you are welcome to redistribute it.
There is NO WARRANTY, to the extent permitted by law.
`
func run(d bool) {
e := newEnv(d)
fmt.Println(goVersion(goVer))
fmt.Printf(license, version)
e.shell(nil)
}
func main() {
d := flag.Bool("d", false, "debug mode")
c := flag.Bool("c", false, "cleanup all Gosh's temporary files")
flag.Parse()
if *c {
cleanDirs()
}
if *showVersion {
fmt.Printf("version: %s\n", version)
return
}
run(*d)
}