1
0
Fork 0
mirror of https://github.com/sbrl/terrain50-cli.git synced 2024-06-26 10:24:55 +00:00
terrain50-cli/src/Subcommands/stream-slice/meta.toml

26 lines
611 B
TOML

description = "Extract a slice from a larger stream of objects"
[[arguments]]
name = "input"
description = "The input file to extract a slice from (default: stdin)"
default_value = "-"
type = "string"
[[arguments]]
name = "output"
description = "The output file to write to (default: stdout)"
default_value = "-"
type = "string"
[[arguments]]
name = "count"
description = "The number of objects to extract (default: 1)"
default_value = 1
type = "integer"
[[arguments]]
name = "offset"
description = "The number of objects to skip before beginning extraction (default: 0)"
default_value = 0
type = "integer"