[Info-vax] SEARCH ''

hb end.of at inter.net
Wed Jan 19 05:20:02 EST 2022


On 1/19/22 01:13, Stephen Hoffman wrote:
FWIW,
> $ pipe x="'" + "'" | search x.com &x
does not work:
%DCL-W-UNDSYM, undefined symbol - check validity and spelling

You probably had a symbol x defined outside of the pipe command.

$ x:=exit
$ pipe x="'" + "'" | search x.com &x
$ exit

A working pipe command is:
$ pipe x="'" + "'" ; search x.com &x

And that sets/overwrites the symbol x, which can be avoided:
$ x:=exit
$ pipe ( x="'" + "'" ; search x.com &x )
$ write sys$output "Page size: ''ps'"



More information about the Info-vax mailing list