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
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:
> > > >
> > > >
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
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
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 \.
>
>
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'.