home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.unix.shell
- Path: sparky!uunet!zaphod.mps.ohio-state.edu!moe.ksu.ksu.edu!ux1.cso.uiuc.edu!cs.uiuc.edu!schwager
- From: schwager@mike.cs.uiuc.edu (Mike Schwager)
- Subject: Re: Exiting ksh with a running job
- Message-ID: <C0rwJu.7GA@cs.uiuc.edu>
- Sender: news@cs.uiuc.edu
- Organization: University of Illinois, Dept. of Comp. Sci., Urbana, IL
- References: <C0rqtK.ru@cs.uiuc.edu>
- Date: Wed, 13 Jan 1993 03:33:30 GMT
- Lines: 22
-
- schwager@mike.cs.uiuc.edu (Mike Schwager) writes:
-
-
- >Howdy,
- >Quick question: why won't ksh let me exit if I have a job running thusly:
-
- > command > /dev/null 2>1 &
-
- >I should say, I can exit but it will kill the job! Can I get ksh to be
- >more kind?
- >Thanks
- >-Mike
-
- Thanks for the lightning quick responses! Got my answer:
-
- nohup command &
-
- or in this case,
-
- nohup command > /dev/null 2>1 &
-
- -Mike
-