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

This commit is contained in:
Cédric Abonnel 2025-03-08 02:55:16 +01:00
parent ef51ecb38a
commit 71fc606145
1 changed files with 1 additions and 0 deletions
notes/server-mail

View File

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