Files
vina_docking_batch/kill_vina_jobs.sh
lingyuzeng 05ce8823f8 first add
2025-08-02 21:54:31 +08:00

11 lines
186 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/bin/bash
# 用法: ./kill_vina_jobs.sh 12
N=${1:-12} # 默认为12若有参数则用参数
for i in $(seq 1 $N); do
echo "dkill -n vina_job$i"
dkill -n vina_job$i
done