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