一、详解

Linux 之shell脚本调用另一个shell脚本

 

二、例子

test.sh

#!/bin/bash

source ./stop.sh
source ./stop_by.sh
source ./start_by.sh

nohup /www/server/php/54/bin/php ./Applications/Chat/start_register.php start &
nohup /www/server/php/54/bin/php ./Applications/Chat/start_gateway.php start &
nohup /www/server/php/54/bin/php ./Applications/Chat/start_businessworker.php start &

 

相关文章:

  • 2021-07-19
  • 2021-09-13
  • 2021-09-07
  • 2021-11-05
  • 2022-12-23
  • 2021-09-10
  • 2021-12-05
猜你喜欢
  • 2022-12-23
  • 2021-12-04
  • 2022-12-23
  • 2021-09-27
  • 2021-06-20
相关资源
相似解决方案