Skip to content

Commit

Permalink
Fixed zpool iostat help to fit in 80 columns (openzfs#46)
Browse files Browse the repository at this point in the history
This was causing failure in functional/cli_user/misc/zpool_001_neg.ksh
  • Loading branch information
Don Brady authored Dec 3, 2021
1 parent 460d071 commit 4b9e2e2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cmd/zpool/zpool_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -411,9 +411,10 @@ get_usage(zpool_help_t idx)
"[newpool]\n"));
case HELP_IOSTAT:
return (gettext("\tiostat [[[-c [script1,script2,...]"
"[-lq]]|[-rw]] [-T d | u] [-ghHLpPvy] [-o [-l|-q|-r|-w]]\n"
"\t [[pool ...]|[pool vdev ...]|[vdev ...]]"
" [[-n] interval [count]]\n"));
"[-lq]]|[-rw]] [-T d | u] [-ghHLpPvy]\n"
"\t [-o [-l|-q|-r|-w]] [[pool ...]|[pool vdev ...]"
"|[vdev ...]]\n"
"\t [[-n] interval [count]]\n"));
case HELP_LABELCLEAR:
return (gettext("\tlabelclear [-f] <vdev>\n"));
case HELP_LIST:
Expand Down

0 comments on commit 4b9e2e2

Please sign in to comment.