Jan 19, 2003 #1 alanchia Technical User Jan 8, 2003 42 SG hi all, i could not change the MANPATH using setenv, it writes setenv not found, could anyone help me with this? thanks alanchia
hi all, i could not change the MANPATH using setenv, it writes setenv not found, could anyone help me with this? thanks alanchia
Jan 20, 2003 #2 Annihilannic MIS Jun 22, 2000 6,317 AU You're probably not running C shell, so setenv would not work. ps -fp $$ will tell you what shell you are running. If it's Bourne shell (sh) type: [tt]MANPATH=$MANPATH:/my/new/path export MANPATH[/tt] In Korn shell (ksh) you can combine that into one step: [tt]export MANPATH=$MANPATH:/my/new/path[/tt] Annihilannic. Upvote 0 Downvote
You're probably not running C shell, so setenv would not work. ps -fp $$ will tell you what shell you are running. If it's Bourne shell (sh) type: [tt]MANPATH=$MANPATH:/my/new/path export MANPATH[/tt] In Korn shell (ksh) you can combine that into one step: [tt]export MANPATH=$MANPATH:/my/new/path[/tt] Annihilannic.
Jan 20, 2003 Thread starter #3 alanchia Technical User Jan 8, 2003 42 SG thanks alot. Upvote 0 Downvote