mirror of
https://forge.chapril.org/tykayn/wololo
synced 2025-06-20 01:34:42 +02:00
réinit
This commit is contained in:
commit
996524bc6d
107 changed files with 1295536 additions and 0 deletions
13
update_scripts/run_all_converters.sh
Executable file
13
update_scripts/run_all_converters.sh
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/bin/bash
|
||||
|
||||
# chemin du dossier à parcourir
|
||||
dir_to_search="."
|
||||
|
||||
# recherche tous les fichiers .sh dans le dossier et ses sous-dossiers
|
||||
find "$dir_to_search" -type f -name "convert*.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