AUTH's THMMY "Parallel and distributed systems" course assignments.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

16 строки
388 B

  1. #! /usr/bin/env bash
  2. if [[ $# -lt 2 ]]; then
  3. echo "Error: You must pass the directory with the scripts and partition"
  4. echo "you want to run to "
  5. echo "example $ enqueueAll.sh ./hpc/Q23 batch"
  6. echo "example $ enqueueAll.sh ./hpc/Q20 rome"
  7. exit 1;
  8. fi
  9. # Enqueue
  10. for file in $(ls $1); do
  11. echo "sbatch -p $2 --qos=small $file";
  12. eval "sbatch -p $2 --qos=small $file";
  13. done