mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-06 13:09:50 +00:00
sh: Show negated commands (!) in jobs output.
This commit is contained in:
parent
b4047f838c
commit
f9b7cc523d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=246162
@ -1298,6 +1298,10 @@ cmdtxt(union node *n)
|
||||
cmdputs(n->narg.text);
|
||||
cmdputs("() ...");
|
||||
break;
|
||||
case NNOT:
|
||||
cmdputs("! ");
|
||||
cmdtxt(n->nnot.com);
|
||||
break;
|
||||
case NCMD:
|
||||
for (np = n->ncmd.args ; np ; np = np->narg.next) {
|
||||
cmdtxt(np);
|
||||
|
Loading…
Reference in New Issue
Block a user