bannerSpec top-level property
Completion spec for banner CLI
Implementation
final FigSpec bannerSpec = FigSpec(
name: 'banner',
description: 'Prints a large, high quality banner on the standard output',
args: [
Arg(
name: 'tex'
)
],
options: [
Option(
name: '-t',
description: 'Enable trace'
),
Option(
name: '-d',
description: 'Enable debug'
),
Option(
name: '-w',
description: 'Change the output from a width of 132 to width, suitable for a narrow terminal'
)
]
);