fxa-auth-server/scripts/reset-send-all-batches.sh

15 строки
271 B
Bash
Executable File

#!/bin/bash
if [ "$#" -ne 1 ]; then
echo "batch directory must be specified"
exit 1
fi
DIRNAME=${1}
for BATCH in $(find ${DIRNAME} -name "*.json" -type f); do
echo ${BATCH} $PWD
./reset-send-batch.sh ${BATCH}
rc=$?; if [[ $rc != 0 ]]; then exit $rc; fi
done