[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

Re: Shell script help



> 
> 
> Am trying to write a bash cgi script which "echo"s a bunch of html stuff to
> stdout, calls another script
> and quits. I want the second script to run asychronously -but- to continue
> running when the cgi script
> quits. I thought of using "at" but is there a pure bash solution?
> 
> TIA
> 
start your second script with:
	command-to-start-script &
or
	nohup  command-to-start-script &


paul
--
           /-------------------\\   //---------------------------/
          / C h i p p e w a     \\ // alley  Technical  College /
         / 620 W. Clairemont Ave \//  Eau Claire, WI 54701 USA /
        /-----------------------------------------------------/
       /  Paul F. Almquist, Instructor - DBMS,OS,Networking  /
      /  Computer Information Systems Dept   Unix Forever!! /
     / almquipf cis chippewa tec wi us  Voice:715-833-6386 /
    /      http://cis.chippewa.tec.wi.us/almquipf         /
   /-----------------------------------------------------/



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]