On Thu, 30 Oct 2003, Allen H. Nugent wrote:
> The setenv command is not recognised by my cygwin installation. I have 
> tried the following alternatives in the BASH shell:
> 
>          $ set DXHOST=unix
>          $ set DXHOST=local
>          $ set DXHOST=ahn-002
>          $ set DXHOST=AHN_002


The correct way to set environment variables in the BASH shell is

        DXHOST=unix
        export DXHOST

or 

        export DXHOST=unix


Fred

Reply via email to