Examples of changing environment variables: Bourne shell

Examples of changing environment variables: Bourne shell

To change to using another printer for the current login session:

   PRINTER=ps2

Whenever the user prints a file, the output will be sent to the printer ps2.


To change to using another editor for the current login session and inform (export) this value to other programs which use it:

   EDITOR=vi
   export EDITOR

This changes the user's default editor to vi and exports this value to other programs - such as electronic mail - which make use of it.


To change to using another pager for viewing files the user adds the following lines to their .profile file.

   PAGER=less;export PAGER

To make this change take immediate effect enter the command:

   . .profile

This causes the .profile file to be read, setting the variables to their new values.


[Home] [Search] [Index] This site maintained by unixhelp@math.rutgers.edu
This page was last updated on September 05, 2006 at 10:29 am and is maintained by webmaster@math.rutgers.edu.
For questions regarding courses and/or special permission, please contact mclausen@math.rutgers.edu.
For questions or comments about this site, please contact help@math.rutgers.edu.
© 2012 Rutgers, The State University of New Jersey. All rights reserved.