tailSpec top-level property
Completion spec for tail CLI
Implementation
final FigSpec tailSpec = FigSpec(
name: 'tail',
description: 'Display the last part of a file',
args: [
Arg(
isVariadic: true,
template: 'filepaths'
)
],
options: [
Option(
name: '-f',
description: 'Wait for additional data to be appended'
),
Option(
name: '-r',
description: 'Display in reverse order'
)
]
);