#!/bin/sh
path_process_list=/opt/process.list
cat $path_process_list | while read i
do
        if [ x"$(ps -Af | grep "$i" | grep -v grep)" == x"" ] ; then
                $i &
        fi
done

相关文章:

  • 2021-10-05
  • 2022-01-11
  • 2022-12-23
  • 2022-12-23
  • 2021-05-16
  • 2021-12-02
猜你喜欢
  • 2021-06-23
  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-07
相关资源
相似解决方案