|
There is an environment variable called TMOUT that contains the default number of seconds before a shell timeout occurs. If your session is idle for that duration, you get booted. You can however, over ride this variable (assuming that your local sys admin did not make this a read only variable). To do so in Korn Shell:
export TMOUT=0
|