mirror of
https://github.com/lemeow125/ansible-playbooks.git
synced 2024-11-17 04:09:26 +08:00
9 lines
No EOL
184 B
Bash
9 lines
No EOL
184 B
Bash
#!/bin/bash
|
|
|
|
directory="/root/scripts/acme_scripts"
|
|
|
|
# Execute all .sh files in the directory
|
|
for script in "$directory"/*.sh; do
|
|
echo "--Executing $script--"
|
|
bash "$script"
|
|
done |