1
0
mirror of https://github.com/offen/docker-volume-backup.git synced 2025-05-29 22:07:31 +02:00
2021-07-11 14:02:05 +02:00

16 lines
287 B
Bash
Executable File

#!/bin/sh
set -e
for dir in $(ls -d -- */); do
test="${dir}run.sh"
echo "################################################"
echo "Now running $test"
echo "################################################"
echo ""
/bin/sh $test
echo ""
echo "$test passed"
echo ""
done