utils/loader.sh
2024-07-27 04:15:43 +05:00

30 lines
929 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# Путь к файлу с списком ссылок
FILE_LIST="server.list"
# Токен доступа для авторизации
TOKEN="READ_REPOSITORY_ACCESS_TOKEN"
# Проверка наличия файла со списком ссылок
if [ ! -f "$FILE_LIST" ]; then
echo "Файл $FILE_LIST не найден."
exit 1
fi
# Читаем файл строчка за строчкой
while IFS= read -r URL; do
if [ ! -z "$URL" ]; then
# Получаем имя файла из URL
FILE_NAME=$(basename "$URL")
# Загружаем файл используя curl
curl -H "Authorization: token $TOKEN" -O "$URL"
# Проверка статуса выполнения curl
if [ $? -ne 0 ]; then
echo "Ошибка при загрузке файла: $FILE_NAME"
else
echo "Успешно загружен: $FILE_NAME"
fi
fi
done < "$FILE_LIST"