我demo.sh
用来启动守护进程 mpi 任务:
#! /bin/sh
if ! kill -0 $(cat pid) > /dev/null 2>&1
then
/sbin/start-stop-daemon -p pid -m pid --start --background --exec mpirun -n 2 a.out
fi
但它不能工作,我怎么能用它start-stop-daemon
来启动一个 mpi 工作?
我demo.sh
用来启动守护进程 mpi 任务:
#! /bin/sh
if ! kill -0 $(cat pid) > /dev/null 2>&1
then
/sbin/start-stop-daemon -p pid -m pid --start --background --exec mpirun -n 2 a.out
fi
但它不能工作,我怎么能用它start-stop-daemon
来启动一个 mpi 工作?