Refactor usage() in dirname

This commit is contained in:
dtluna 2019-03-26 12:39:35 +03:00
parent a562d6acdb
commit 289851b20f

View File

@ -8,12 +8,12 @@ import (
func usage() { func usage() {
fmt.Printf("usage: %v path\n", os.Args[0]) fmt.Printf("usage: %v path\n", os.Args[0])
os.Exit(1)
} }
func main() { func main() {
if len(os.Args) != 2 { if len(os.Args) != 2 {
usage() usage()
os.Exit(1)
} }
fmt.Println(path.Dir(os.Args[1])) fmt.Println(path.Dir(os.Args[1]))