List valid keywords, ala kill(1), rather than the csh builtin kill, which
tells people to type kill -l, when no valid ones are specified. Sponsored by: Bright Path Solutions MFC after: 4 days
This commit is contained in:
parent
0400410a48
commit
218fa5fb98
@ -264,8 +264,11 @@ parsefmt(const char *p)
|
||||
}
|
||||
}
|
||||
free(tempstr1);
|
||||
if (!vhead)
|
||||
errx(1, "no valid keywords (type ps -L for a list)");
|
||||
if (!vhead) {
|
||||
warnx("no valid keywords; valid keywords:");
|
||||
showkey();
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
static VAR *
|
||||
|
Loading…
Reference in New Issue
Block a user