mirror of
https://forge.chapril.org/tykayn/wololo
synced 2025-06-20 01:34:42 +02:00
14 lines
340 B
Bash
Executable file
14 lines
340 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# chemin du dossier à parcourir
|
|
source functions.sh
|
|
dir_to_search="mappings/extractors"
|
|
|
|
# recherche tous les fichiers .sh dans le dossier et ses sous-dossiers
|
|
find "$dir_to_search" -type f -name "*.sh" -print0 | while IFS= read -r -d '' file; do
|
|
|
|
echo $file
|
|
# exécute chaque fichier .sh trouvé
|
|
bash $file
|
|
|
|
done
|