6 lines
59 B
Bash
6 lines
59 B
Bash
#!/bin/bash
|
|
|
|
for file in os.d/*.bash; do
|
|
bash $file
|
|
done
|