tweaked to remove some old junk, and add rust

This commit is contained in:
Luke 2023-05-29 13:45:56 -07:00
parent 5748a2178e
commit 569bedc92b
5 changed files with 15 additions and 12 deletions

View file

@ -1,20 +0,0 @@
#!/bin/bash
MAX_JOBS=8
function holdForWork() {
while [[ $MAX_JOBS -le $(jobs -l | wc -l) ]]; do sleep 0.1; done
}
function holdForFinish() {
while [[ $(jobs -lr | wc -l) -gt 0 ]]; do sleep 0.1; done
}
for TASK in TASK_LIST; do
holdForWork
(
echo ""
) &>/dev/null &
done
holdForFinish
echo " ...done!"