rendre les fichiers executables après etre téléchargés

This commit is contained in:
2025-03-08 02:55:16 +01:00
parent ef51ecb38a
commit 71fc606145

View File

@@ -29,6 +29,7 @@ wget -O scripts.txt "https://git.abonnel.fr/cedricAbonnel/notes-techniques/raw/b
while read -r url; do while read -r url; do
wget -O "$(basename "$url")" "$url" wget -O "$(basename "$url")" "$url"
done < scripts.txt done < scripts.txt
chmod +x *.sh
``` ```