docker-images/pluie/alpine/util.sh

13 lines
242 B
Bash
Raw Normal View History

2016-07-25 00:28:26 +00:00
#!/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
}