> > USAGE=$' > ... > [+DESCRIPTION?'\b'Lorem ipsum'\b'dolor '$\b'sit amet'$\b',
Ummm, forgive me if I'm making a fool of myself, but why the use of '\b' in there? shouldn't it be > [+DESCRIPTION?\bLorem ipsum\bdolor \bsit amet\b, etc etc etc? Looks like you're taking David's words literally and embedding '\b' when you should just embed \b Each of those single-quotes will be taking you out of string mode, adding b to the command line, then going back into ordinary string mode, not into $' string mode. _______________________________________________ ast-users mailing list [email protected] https://mailman.research.att.com/mailman/listinfo/ast-users
