9 lines
85 B
Bash
Executable File
9 lines
85 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for s in /root/lab-build/*
|
|
do
|
|
echo "** Executing $s"
|
|
/bin/sh $s
|
|
done
|
|
|