From owner-freebsd-newbies@FreeBSD.ORG Thu Aug 26 16:01:57 2004 Return-Path: Delivered-To: freebsd-newbies@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FF8F16A4CE for ; Thu, 26 Aug 2004 16:01:57 +0000 (GMT) Received: from ns1.tiadon.com (SMTP.tiadon.com [69.27.132.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0694243D69 for ; Thu, 26 Aug 2004 16:01:57 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from [69.27.131.0] ([69.27.131.0]) by ns1.tiadon.com with Microsoft SMTPSVC(6.0.3790.0); Thu, 26 Aug 2004 11:02:22 -0500 Message-ID: <412E0972.3030405@daleco.biz> Date: Thu, 26 Aug 2004 11:01:54 -0500 From: "Kevin D. Kinsey, DaleCo, S.P." User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7) Gecko/20040712 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Cody Rioux References: <801213900.20040825215844@xtsy.de> <412D81A0.5080908@wup-katowice.pl> <412D8435.3090101@daleco.biz> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 26 Aug 2004 16:02:22.0857 (UTC) FILETIME=[12AF3F90:01C48B86] cc: freebsd-newbies@freebsd.org Subject: Re: changing the shell and editor X-BeenThere: freebsd-newbies@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Gathering place for new users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Aug 2004 16:01:57 -0000 Cody Rioux wrote: >It is the setenv command if you are using csh or one of its variants, >however he said that he was using bash, so you would need to export >the variable using the export command, I belive he already has the >problem solved though. :) > > > Well, yes; but "he who?" If you read carefully the message below, you see that I was replying to Arek Czereszewski (hope I spelled that correctly) who stated that "Command set VARIABLE work in t/csh". I was simply noting the truth that in csh/tcsh, you have to "setenv" ... as you see from the example, "set" doesn't work here (in tcsh)... :-) KDK >On Thu, 26 Aug 2004 01:33:25 -0500, Kevin D. Kinsey, DaleCo, S.P. > wrote: > > >>Arek Czereszewski wrote: >> >> >> >>>Command set VARIABLE work in t/csh >>> >>> >>> >>Actually, isn't is "setenv": >> >> [/home/kadmin/c++/archive] [1:30] >> % setenv FOO BAR >> >> [/home/kadmin/c++/archive] [1:30] >> % echo $FOO >> BAR >> >> [/home/kadmin/c++/archive] [1:30] >> % set FOOD BAR >> >> [/home/kadmin/c++/archive][1:30] >> % echo $FOOD >> >> [/home/kadmin/c++/archive][1:30] >> >>Hmm, FOOD BAR ... >> >>I'm getting hungry ;-) >> >>KDK >> >>