mirror of
https://forge.chapril.org/tykayn/wololo
synced 2025-06-20 01:34:42 +02:00
13 lines
309 B
Bash
Executable file
13 lines
309 B
Bash
Executable file
#!/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
|