mirror of
https://github.com/quitesimpleorg/hs9001.git
synced 2025-01-09 17:13:44 +01:00
Compare commits
2 Commits
31973bd5dd
...
e63ad28f74
Author | SHA1 | Date | |
---|---|---|---|
e63ad28f74 | |||
eb0612864d |
13
main.go
13
main.go
@ -9,6 +9,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"regexp"
|
"regexp"
|
||||||
|
"strings"
|
||||||
|
|
||||||
_ "modernc.org/sqlite"
|
_ "modernc.org/sqlite"
|
||||||
)
|
)
|
||||||
@ -118,6 +119,10 @@ func exists(path string) (bool, error) {
|
|||||||
return false, err
|
return false, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func printUsage() {
|
||||||
|
fmt.Fprintf(os.Stderr, "Usage: ./hs9001 <add/search/init/import>\n")
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
var ret int
|
var ret int
|
||||||
flag.IntVar(&ret, "ret", 0, "Return value of the command to add")
|
flag.IntVar(&ret, "ret", 0, "Return value of the command to add")
|
||||||
@ -126,7 +131,7 @@ func main() {
|
|||||||
argslen := len(args)
|
argslen := len(args)
|
||||||
|
|
||||||
if argslen < 1 {
|
if argslen < 1 {
|
||||||
fmt.Fprintf(os.Stderr, "Usage: ./hs9001 <add/search/init/import>\n")
|
printUsage()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -152,7 +157,7 @@ func main() {
|
|||||||
if argslen < 2 {
|
if argslen < 2 {
|
||||||
fmt.Fprint(os.Stderr, "Please provide the search query\n")
|
fmt.Fprint(os.Stderr, "Please provide the search query\n")
|
||||||
}
|
}
|
||||||
q := args[1]
|
q := strings.Join(args[1:], " ")
|
||||||
search(conn, q)
|
search(conn, q)
|
||||||
os.Exit(23)
|
os.Exit(23)
|
||||||
} else if cmd == "init" {
|
} else if cmd == "init" {
|
||||||
@ -163,5 +168,9 @@ func main() {
|
|||||||
initDatabase(conn)
|
initDatabase(conn)
|
||||||
} else if cmd == "import" {
|
} else if cmd == "import" {
|
||||||
importFromStdin(conn)
|
importFromStdin(conn)
|
||||||
|
} else {
|
||||||
|
fmt.Fprint(os.Stderr, "Error: Unknown command supplied\n\n")
|
||||||
|
printUsage()
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user