Sujet : Re: VMS x86-64 database server
De : arne (at) *nospam* vajhoej.dk (Arne Vajhøj)
Groupes : comp.os.vmsDate : 10. Jul 2025, 20:52:20
Autres entêtes
Organisation : SunSITE.dk - Supporting Open source
Message-ID : <687019f2$0$690$14726298@news.sunsite.dk>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
User-Agent : Mozilla Thunderbird
On 7/10/2025 3:50 PM, Arne Vajhøj wrote:
On 7/9/2025 3:55 PM, hb0815 wrote:
For linking with a single shareable, there is also a one-liner like:
$ pipe write sys$output "s/share" | link m,sys$pipe/opt
Clever.
But not a style I would recommend.
When I read it then I wondered why you used SYS$PIPE and
not SYS$INPUT.
They can be different but I don't think they are in this case.
And if someone want to see a case where they are different,
then this weird DCL does:
$ type pip.txt
A
BB
CCC
$ type pip.com
$ vf='f$verify(0)'
$ type sys$pipe
$ type sys$input
CCC
BB
A
$
$ if vf then exit f$verify(1)+1
$ exit 1
$ pipe type pip.txt | @pip
A
BB
CCC
CCC
BB
A
Arne