Re: svn commit: r315773 - head/sbin/devd

2017-03-25 Thread Dag-Erling Smørgrav
Warner Losh writes: > Log: > Implement quote escaping. String values may now contain " if you > it is preceded by \. If you're interested, openpam_readword(3) implements the full POSIX shell quoting rules, including line continuations and multi-line quoted strings, and should be fairly easy t

Re: svn commit: r315773 - head/sbin/devd

2017-03-24 Thread Cy Schubert
In message <201703240340.v2o3eekh002...@slippy.cwsent.com>, Cy Schubert writes: > In message <1490297671.58015.102.ca...@freebsd.org>, Ian Lepore writes: > > On Thu, 2017-03-23 at 19:58 +0100, Roman Divacky wrote: > > > On Thu, Mar 23, 2017 at 02:36:51AM +, Warner Losh wrote: > > > > > > > >

Re: svn commit: r315773 - head/sbin/devd

2017-03-23 Thread Cy Schubert
In message <1490297671.58015.102.ca...@freebsd.org>, Ian Lepore writes: > On Thu, 2017-03-23 at 19:58 +0100, Roman Divacky wrote: > > On Thu, Mar 23, 2017 at 02:36:51AM +, Warner Losh wrote: > > > > > > Author: imp > > > Date: Thu Mar 23 02:36:51 2017 > > > New Revision: 315773 > > > URL: http

Re: svn commit: r315773 - head/sbin/devd

2017-03-23 Thread Ian Lepore
On Thu, 2017-03-23 at 19:58 +0100, Roman Divacky wrote: > On Thu, Mar 23, 2017 at 02:36:51AM +, Warner Losh wrote: > > > > Author: imp > > Date: Thu Mar 23 02:36:51 2017 > > New Revision: 315773 > > URL: https://svnweb.freebsd.org/changeset/base/315773 > > > > Log: > >   Implement quote escap

Re: svn commit: r315773 - head/sbin/devd

2017-03-23 Thread Roman Divacky
On Thu, Mar 23, 2017 at 02:36:51AM +, Warner Losh wrote: > Author: imp > Date: Thu Mar 23 02:36:51 2017 > New Revision: 315773 > URL: https://svnweb.freebsd.org/changeset/base/315773 > > Log: > Implement quote escaping. String values may now contain " if you > it is preceded by \. > >

svn commit: r315773 - head/sbin/devd

2017-03-22 Thread Warner Losh
Author: imp Date: Thu Mar 23 02:36:51 2017 New Revision: 315773 URL: https://svnweb.freebsd.org/changeset/base/315773 Log: Implement quote escaping. String values may now contain " if you it is preceded by \. foo="I \"like\" C++" gives the value 'I "like" C++' to the variable 'foo'.