mirror of
https://github.com/alibaba/EasyCV.git
synced 2025-06-03 14:49:00 +08:00
5 lines
166 B
Bash
5 lines
166 B
Bash
#!/bin/bash
|
|
# kill training jobs started by easycv, note it
|
|
# will kill all the training processes
|
|
kill $(ps aux | grep "train.py" | grep -v grep | awk '{print $2}')
|