1. Home
  2. Computing & Technology
  3. Linux
Linux / Unix Command: unsetenv
Command Library

NAME

setenv - change or add an environment variable  

SYNOPSIS

#include <stdlib.h>

int setenv(const char *name, const char *value, int overwrite);

void unsetenv(const char *name);
 

DESCRIPTION

The setenv() function adds the variable name to the environment with the value value, if name does not already exist. If name does exist in the environment, then its value is changed to value if overwrite is non-zero; if overwrite is zero, then the value of name is not changed.

The unsetenv() function deletes the variable name from the environment.  

RETURN VALUE

The setenv() function returns zero on success, or -1 if there was insufficient space in the environment.  

CONFORMING TO

BSD 4.3  

SEE ALSO

clearenv(3), getenv(3), putenv(3), environ(5)


Important: Use the man command (% man) to see how a command is used on your particular computer.

>> Linux/Unix Command Library

>> Shell Command Library

Explore Linux
About.com Special Features

The Best Web Trends of the Decade

A look back at the best innovations, ideas and technologies over the last 10 years, More >

Family Tech Center

Stay connected and entertained with reviews on tips on the latest HDTVs, cellphones and more. More >

  1. Home
  2. Computing & Technology
  3. Linux

©2009 About.com, a part of The New York Times Company.

All rights reserved.