-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage-all.sh
executable file
·18 lines (15 loc) · 1.04 KB
/
manage-all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash
# -------------------------------------------------------------------------------- #
# Description #
# -------------------------------------------------------------------------------- #
# This is the core controller script for generating, building and publishing the #
# docker containers. #
# -------------------------------------------------------------------------------- #
while IFS= read -r -d '' script; do
$script "${@}"
done < <(find . -name manage.sh -print0 | sort -zVd)
# -------------------------------------------------------------------------------- #
# End of Script #
# -------------------------------------------------------------------------------- #
# This is the end - nothing more to see here. #
# -------------------------------------------------------------------------------- #