mirror of
https://forge.chapril.org/tykayn/wololo
synced 2025-10-09 17:02:46 +02:00
réinit
This commit is contained in:
commit
996524bc6d
107 changed files with 1295536 additions and 0 deletions
14
update_scripts/run_all_extractors.sh
Executable file
14
update_scripts/run_all_extractors.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/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
|
Loading…
Add table
Add a link
Reference in a new issue