teeSpec top-level property
Completion spec for tee CLI
Implementation
final FigSpec teeSpec = FigSpec(
name: 'tee',
description: 'Duplicate standard input',
options: [
Option(
name: '-a',
description: 'Append the output to the files rather than overwriting them'
),
Option(
name: '-i',
description: 'Ignore the SIGINT signal'
)
],
args: [
Arg(
name: 'file',
description: 'Pathname of an output file',
isVariadic: true,
template: 'filepaths'
)
]
);