clean-nsg-jobs.sh 327 B

1234567891011121314151617
  1. #!/bin/bash
  2. # Copyright 2023 Ankur Sinha
  3. # Author: Ankur Sinha <sanjay DOT ankur AT gmail DOT com>
  4. # File :
  5. #
  6. nsgr_job -l | cut -f2 -d ' ' > joblist.txt
  7. while IFS="" read -r line ; do
  8. echo "Deleting job: ${line}"
  9. nsgr_job -j ${line} -r
  10. done < joblist.txt
  11. echo "All jobs deleted"
  12. echo "Please delete joblist.txt"