unameSpec top-level property
Completion spec for uname CLI
Implementation
final FigSpec unameSpec = FigSpec(
name: 'uname',
description: 'Print operating system name',
options: [
Option(
name: '-a',
description: 'Print all available system information'
),
Option(
name: '-m',
description: 'Print the machine hardware name'
),
Option(
name: '-n',
description: 'Print the system hostname'
),
Option(
name: '-p',
description: 'Print the machine processor architecture name'
),
Option(
name: '-r',
description: 'Print the operating system release'
),
Option(
name: '-s',
description: 'Print the operating system name'
),
Option(
name: '-v',
description: 'Print the operating system version'
)
]
);