diff options
author | jilles <jilles@FreeBSD.org> | 2010-12-06 23:49:27 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2010-12-06 23:49:27 +0000 |
commit | 83a1280f2b061e260e6471843e4c35fd3ce60c1a (patch) | |
tree | ded47fbaa17813874ddfe92aa7aaf4d6ce740789 /bin | |
parent | f84e526334bd13cc3772b0d7dbb15aa5b4da51e3 (diff) | |
download | FreeBSD-src-83a1280f2b061e260e6471843e4c35fd3ce60c1a.zip FreeBSD-src-83a1280f2b061e260e6471843e4c35fd3ce60c1a.tar.gz |
sh: Improve internal-representation-to-text code to avoid binary output.
The code to translate the internal representation to text did not know about
various additions to the internal representation since the original ash and
therefore wrote binary stuff to the terminal.
The code is used in the jobs command and similar output.
Note that the output is far from complete and mostly serves for recognition
purposes.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sh/jobs.c | 39 |
1 files changed, 36 insertions, 3 deletions
diff --git a/bin/sh/jobs.c b/bin/sh/jobs.c index a761f28..de813c2 100644 --- a/bin/sh/jobs.c +++ b/bin/sh/jobs.c @@ -1314,13 +1314,46 @@ cmdputs(const char *s) if (--cmdnleft > 0) *q++ = '{'; subtype = *p++; + if ((subtype & VSTYPE) == VSLENGTH && --cmdnleft > 0) + *q++ = '#'; } else if (c == '=' && subtype != 0) { - *q++ = "}-+?="[(subtype & VSTYPE) - VSNORMAL]; + *q = "}-+?=##%%\0X"[(subtype & VSTYPE) - VSNORMAL]; + if (*q) + q++; + else + cmdnleft++; + if (((subtype & VSTYPE) == VSTRIMLEFTMAX || + (subtype & VSTYPE) == VSTRIMRIGHTMAX) && + --cmdnleft > 0) + *q = q[-1], q++; subtype = 0; } else if (c == CTLENDVAR) { *q++ = '}'; - } else if (c == CTLBACKQ || c == CTLBACKQ+CTLQUOTE) - cmdnleft++; /* ignore it */ + } else if (c == CTLBACKQ || c == CTLBACKQ+CTLQUOTE) { + cmdnleft -= 5; + if (cmdnleft > 0) { + *q++ = '$'; + *q++ = '('; + *q++ = '.'; + *q++ = '.'; + *q++ = '.'; + *q++ = ')'; + } + } else if (c == CTLARI) { + cmdnleft -= 2; + if (cmdnleft > 0) { + *q++ = '$'; + *q++ = '('; + *q++ = '('; + } + p++; + } else if (c == CTLENDARI) { + if (--cmdnleft > 0) { + *q++ = ')'; + *q++ = ')'; + } + } else if (c == CTLQUOTEMARK || c == CTLQUOTEEND) + cmdnleft++; /* ignore */ else *q++ = c; if (--cmdnleft <= 0) { |