This commit is contained in:
Oleg Sheynin 2024-07-18 16:45:52 -04:00
parent 78de26d154
commit 9a59b00998
2 changed files with 8 additions and 1 deletions

View File

@ -1 +1 @@
0.9.1 0.9.2

View File

@ -105,3 +105,10 @@ for ((ii=0; ii <${#Instruments[@]}; ii+=slice_size)); do
parallel -j ${NumJobs} run_proc {} ${Start} ${End} ::: "${InstSlice[@]}" parallel -j ${NumJobs} run_proc {} ${Start} ${End} ::: "${InstSlice[@]}"
done done
echo "Compressing"
for file in $(find ${OutputDir} -type f -name '*db' -print )
do
echo "Compressing ${file}
gzip ${file}
done