docker-images/pluie/alpine/util.sh
2016-07-25 02:28:26 +02:00

13 lines
242 B
Bash
Executable File

#!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara)
function preInit(){
for i in ls $1/*.sh
do
if [ -e "${i}" ]; then
echo "[[ Processing $i ]]"
. "${i}"
fi
done
}