printf(_(" %s [options]\n"), program_invocation_short_name);
fputs(USAGE_SEPARATOR, stdout);
- puts(_("Interactive utility to display kernel interrupt information."));
+ puts(_("Display kernel interrupt information."));
fputs(USAGE_OPTIONS, stdout);
- fputs(_(" -b, --batch send tables to stdout, not to a static screen\n"), stdout);
- fputs(_(" -c, --cpu-stat <mode> show per-cpu stat (auto, enable, disable)\n"), stdout);
- fputs(_(" -C, --cpu-list <list> specify cpus in list format\n"), stdout);
- fputs(_(" -d, --delay <secs> wait this number of seconds between updates\n"), stdout);
- fputs(_(" -J, --json use JSON output format (implies --batch)\n"), stdout);
- fputs(_(" -n, --iter <number> the maximum number of iterations\n"), stdout);
- fputs(_(" -o, --output <list> define which output columns to use\n"), stdout);
- fputs(_(" -s, --sort <column> specify sort column\n"), stdout);
- fputs(_(" -S, --softirq show softirqs instead of interrupts\n"), stdout);
- fputs(_(" -t, --threshold <N> only IRQs with counters above <N>\n"), stdout);
+ fputs(_(" -b, --batch send tables to stdout, not to a static screen\n"), stdout);
+ fputs(_(" -c, --cpu-stat <mode> whether to show the per-cpu stats (auto|enable|disable)\n"), stdout);
+ fputs(_(" -C, --cpu-list <list> show IRQs only for the specified cpus\n"), stdout);
+ fputs(_(" -d, --delay <secs> wait this number of seconds between updates\n"), stdout);
+ fputs(_(" -J, --json use JSON output format (implies --batch)\n"), stdout);
+ fputs(_(" -n, --iter <number> the maximum number of iterations\n"), stdout);
+ fputs(_(" -o, --output <list> which columns to show, and in which order\n"), stdout);
+ fputs(_(" -s, --sort <column> sort the table on this column\n"), stdout);
+ fputs(_(" -S, --softirq show softirqs instead of interrupts\n"), stdout);
+ fputs(_(" -t, --threshold <num> show only IRQs with counters above this number\n"), stdout);
fputs(USAGE_SEPARATOR, stdout);
- fprintf(stdout, USAGE_HELP_OPTIONS(22));
+ fprintf(stdout, USAGE_HELP_OPTIONS(24));
fputs(_("\nThe following interactive key commands are valid:\n"), stdout);
fputs(_(" i sort by IRQ\n"), stdout);
fputs(_(" t sort by TOTAL\n"), stdout);
fputs(_(" d sort by DELTA\n"), stdout);
fputs(_(" n sort by NAME\n"), stdout);
- fputs(_(" q Q quit program\n"), stdout);
+ fputs(_(" q quit program\n"), stdout);
fputs(USAGE_COLUMNS, stdout);
irq_print_columns(stdout, 0);