8 lines
118 B
Bash
Executable File

#!/bin/bash
for script in ./*_compose.sh; do
echo " ==== $script ==== "
chmod +x $script
. $script
done