in reply to Command line cookies

Setting the HTTP_COOKIE or COOKIE enviroment variables before running the script should do the trick...

# (ba)sh HTTP_COOKIE="..."; export HTTP_COOKIE # (t)csh setenv HTTP_COOKIE "..." # DOS set HTTP_COOKIE="..."

    --k.


Replies are listed 'Best First'.
Re: Re: Command line cookies
by fireartist (Chaplain) on Apr 05, 2002 at 13:57 UTC
    Thank you both for your suggestions.
    I've just tested the HTTP_COOKIE environment variable solution, and it's *exactly* what I was hoping for.
    Many thanks!