T.R | Title | User | Personal Name | Date | Lines |
---|
480.1 | given a source kit and several weeks... | YALI::LASTOVICA | Stuck in a Lather-Rinse-Repeat loop | Fri May 22 1987 21:41 | 16 |
| have cookie.exe call lib$create_symbol (or whatever it is called)
and create a symbol of your choice. If you want to be real spiffy,
pass the symbol name to the program:
$ cookie = "$DISK:[DIR]COOKIE"
$ cookie "mysymbolname"
$ write sys$output mysymbolname
Short of this, you'll have to modify, recompile and relink DCL,
not something that you'll want to do!
> I know that there are implementing a F$COOKIE() function
> in VAX/VMS V4.601 (According to the DEC Professional (APRIL)
> But, I want to make my own before that is implemented.
Isn't in my copy of the release notes (nor on my system) ;-)
|
480.2 | The APRIL (fools) issue? | WKRP::LENNIG | Dave, SWS, @CYO Cincinnati | Sun May 24 1987 10:19 | 5 |
| > I know that there are implementing a F$COOKIE() function
> in VAX/VMS V4.601 (According to the DEC Professional (APRIL)
> But, I want to make my own before that is implemented.
Dave
|
480.3 | 'Deep Cache' | PLDVAX::GUNDAVARAM | Timothy Dalton is James Bond.... | Sun May 24 1987 19:20 | 11 |
| Dave:
Read the DCL Dialogue, "DEEP CACHE TELLS ALL".... April 1987.
Page 132...
Regards,
-- T.M.S --
|
480.4 | write sys$output f$logical ("sys$cookie") | VIDEO::OSMAN | type video::user$7:[osman]eric.six | Tue May 26 1987 14:54 | 18 |
| Another possibility would be for you to say this:
$ write sys$output f$logical ("sys$cookie")
This could cleverly give you a cookie, if you convince your system
manager to modify the SYSTARTUP.COM file to fire up a batch job
running something like this:
$ start_over:
$ close/nolog a
$ open a sys$games:cookie.txt
$ lup:
$ read/end=start_over a cookie
$ define/nolog/system sys$cookie "''cookie'"
$ wait 0:0:10
$ goto lup
/Eric
|