Fix usageTable command help text for header option

This commit is contained in:
2026-03-06 06:20:36 +01:00
parent 849a8505a2
commit 9b9aefc9a5

View File

@@ -3,10 +3,10 @@
import { readJsonFromStdin } from "../utils.ts";
export function usageTable(): string {
return `Usage: sk-az-tools table [--header|-H <spec|auto|a|original|o>] [global options]
return `Usage: sk-az-tools table [--header|-H <definition|auto|a|original|o>] [global options]
Options:
-H, --header <value> Header mode/spec: auto|a (default), original|o, OR "col1, col2" OR "key1: Label 1, key2: Label 2"`;
-H, --header <value> Header mode: auto|a (default), original|o, or "col1, col2" or "key1: Label 1, key2: Label 2"`;
}
export async function runTableCommand(): Promise<unknown> {