8 lines
84 B
Bash
8 lines
84 B
Bash
#!/bin/sh
|
|
|
|
for s in /root/lab-build/*
|
|
do
|
|
echo "** Executing $s"
|
|
/bin/sh $s
|
|
done
|