使用shell脚本对python脚本文件进行循环测试

代码如下;

#! /usr/bin/env bash
  
  CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7
  
  #02 04 05 09 10 11 13
  for id in 02 05 09 10 11 13
  do
      echo $id
      python main.py --stage det --phase train  --config /configs/config.yaml --leave_oneID $id
  done

kill掉所有循环的python脚本程序:

ps -ef | grep python | cut -c 9-15| xargs kill -s 9

成功kill掉:

使用shell脚本对python脚本文件进行循环测试_第1张图片

你可能感兴趣的:(study)