7 lines
61 B
Bash
7 lines
61 B
Bash
#!/bin/bash
|
|
|
|
for file in tools.d/*.bash
|
|
do
|
|
bash $file
|
|
done
|