From: Daniel Russell (russed@rebecca.its.rpi.edu)
Date: 03/16/93


From: russed@rebecca.its.rpi.edu (Daniel Russell)
Subject: Re: Setenv for LINUX ???
Date: Wed, 17 Mar 1993 02:14:54 GMT

djs6015@ultb.isc.rit.edu (Don Smith) writes:

>In article <MEMSI.93Mar16165705@purple.iesd.auc.dk> memsi@iesd.auc.dk (Kristian H. Mikkelsen) writes:
>}Does somebody know where to find the unix-command "setenv" in the
>}SLS-package?
>}

>In order to use setenv you need a shell which is capable of setting
>enviroment variables like the csh or tcsh.

Actually, in bash or zsh, just make a function:

function setenv(){
        export $1=$2
}

Check the man page for more info...

 dan