waynecookie opened a new pull request, #4438:
URL: https://github.com/apache/linkis/pull/4438

   Fixed nohup startup bug
   
   ### Command 1, after entering the command, you need to press enter again to 
return to[ root@localhost  ~]#
   [ root@localhost  ~]# nohup java > output1.log &
   [1] 382018
   [ root@localhost  ~]# nohup: ignoring input and redirecting stderr to stdout
   [1]+  Exit 1                  nohup java > output1.log
   
   ### Command 2, enter the command and return directly to
   [ root@localhost  ~]# nohup java > output2.log 2>&1 &
   [1] 383379
   
   ### Command 3, after entering the command, you need to press enter again to 
return to[ root@localhost  ~]#
   [ root@localhost  ~]# nohup java 2>&1 > output3.log &
   [2] 388209
   [1]   Exit 1                  nohup java > output2.log 2>&1
   [ root@localhost  ~]# nohup: ignoring input and redirecting stderr to stdout
   [2]+  Exit 1                  nohup java 2>&1 > output3.log


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@linkis.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@linkis.apache.org
For additional commands, e-mail: notifications-h...@linkis.apache.org

Reply via email to