The little things give you away... A collection of various small helper stuff
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

14 satır
243 B

  1. #!/bin/bash
  2. # Wait until an item has no outstanding tasks
  3. # Usage: ia-wait-item-tasks IDENTIFIER
  4. if [[ $# -ne 1 ]]
  5. then
  6. echo 'Usage: ia-wait-item-tasks IDENTIFIER'
  7. exit 1
  8. fi
  9. while ia tasks "$1" | grep -Fvq ' "finished": '
  10. do
  11. sleep 60
  12. done