go-arg/example_test.go

88 lines
2.1 KiB
Go
Raw Normal View History

2015-11-01 13:34:22 -06:00
package arg
import (
"fmt"
"os"
)
// This example demonstrates basic usage
2016-07-31 11:14:44 -05:00
func Example() {
2015-11-01 13:34:22 -06:00
// These are the args you would pass in on the command line
os.Args = []string{"./example", "--foo=hello", "--bar"}
var args struct {
Foo string
Bar bool
}
2015-11-01 15:36:14 -06:00
MustParse(&args)
2015-11-01 13:34:22 -06:00
fmt.Println(args.Foo, args.Bar)
}
// This example demonstrates arguments that have default values
2016-07-31 11:14:44 -05:00
func Example_defaultValues() {
2015-11-01 13:34:22 -06:00
// These are the args you would pass in on the command line
os.Args = []string{"--help"}
var args struct {
Foo string
Bar bool
}
args.Foo = "default value"
2015-11-01 15:36:14 -06:00
MustParse(&args)
2015-11-01 13:34:22 -06:00
fmt.Println(args.Foo, args.Bar)
}
// This example demonstrates arguments that are required
2016-07-31 11:14:44 -05:00
func Example_requiredArguments() {
2015-11-01 13:34:22 -06:00
// These are the args you would pass in on the command line
os.Args = []string{"--foo=1", "--bar"}
var args struct {
Foo string `arg:"required"`
Bar bool
}
2015-11-01 15:36:14 -06:00
MustParse(&args)
2015-11-01 13:34:22 -06:00
}
// This example demonstrates positional arguments
2016-07-31 11:14:44 -05:00
func Example_positionalArguments() {
2015-11-01 13:34:22 -06:00
// These are the args you would pass in on the command line
os.Args = []string{"./example", "in", "out1", "out2", "out3"}
var args struct {
Input string `arg:"positional"`
Output []string `arg:"positional"`
}
2015-11-01 15:36:14 -06:00
MustParse(&args)
2015-11-01 13:34:22 -06:00
fmt.Println("Input:", args.Input)
fmt.Println("Output:", args.Output)
}
// This example demonstrates arguments that have multiple values
2016-07-31 11:14:44 -05:00
func Example_multipleValues() {
2015-11-01 13:34:22 -06:00
// The args you would pass in on the command line
os.Args = []string{"--help"}
var args struct {
Database string
IDs []int64
}
2015-11-01 15:36:14 -06:00
MustParse(&args)
2015-11-01 13:34:22 -06:00
fmt.Printf("Fetching the following IDs from %s: %q", args.Database, args.IDs)
}
// This example shows the usage string generated by go-arg
2016-07-31 11:14:44 -05:00
func Example_usageString() {
2015-11-01 13:34:22 -06:00
// These are the args you would pass in on the command line
os.Args = []string{"--help"}
var args struct {
Input string `arg:"positional"`
Output []string `arg:"positional"`
Verbose bool `arg:"-v,help:verbosity level"`
Dataset string `arg:"help:dataset to use"`
Optimize int `arg:"-O,help:optimization level"`
}
2015-11-01 15:36:14 -06:00
MustParse(&args)
2015-11-01 13:34:22 -06:00
}