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/split/meta.toml

27 lines
604 B
TOML

description = "Split a single stream of Terrain50 objects into seprate files"
[[arguments]]
name = "input"
description = "The input Terrain50 file (default: stdin)"
default_value = "-"
type = "string"
[[arguments]]
name = "output"
description = "The output directory to write to"
# default_value = ""
type = "string"
[[arguments]]
name = "no-gzip"
description = "Don't automatically gzip the output streams"
default_value = false
type = "boolean"
[[arguments]]
name = "count"
description = "The number of objects to extract (default: Infinity)"
default_value = inf # inf = Infinity
type = "integer"