Date: Wed, 16 May 2001 10:47:49 -0700 From: Matthew Hunt <mph@astro.caltech.edu> To: Drew Tomlinson <drewt@writeme.com> Cc: "FreeBSD Questions (E-mail)" <freebsd-questions@FreeBSD.ORG> Subject: Re: How to use setenv to set TERM? Message-ID: <20010516104749.A67794@wopr.caltech.edu> In-Reply-To: <BA5D0CE1CBB2D411B6AA00A0CC3F02390AF9EB@ldcmsx01.lc.ca.gov>; from drewt@writeme.com on Wed, May 16, 2001 at 10:37:13AM -0700 References: <BA5D0CE1CBB2D411B6AA00A0CC3F02390AF9EB@ldcmsx01.lc.ca.gov>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, May 16, 2001 at 10:37:13AM -0700, Drew Tomlinson wrote:
> I want to set my TERM to vt100. I am issuing the command:
>
> setenv TERM=vt100
>
> However, when I use setenv to view the results, TERM=vt100=. How can I drop
> the last "="?
By using the correct syntax. You have set the variable TERM=vt100 to
and empty value.
Try "setenv TERM vt100".
setenv [name [value]]
Without arguments, prints the names and values of
all environment variables. Given name, sets the
environment variable name to value or, without
value, to the null string.
--
Matthew Hunt <mph@astro.caltech.edu> * Science rules.
http://www.pobox.com/~mph/ *
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010516104749.A67794>
