/
vshmidt
/
llama.cpp
Обзор
Документация
Войти
/
vshmidt
/
llama.cpp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
scripts/gen-authors.sh
9 строк
345 B
Vedran Miletić
scripts : make the shell scripts cross-platform (#14341)
30 июн 2025, 11:17
Не верифицирован
30 июн 2025, 11:17
e9b6350
Код
Авторство
О чём код?
#!/usr/bin/env bash printf "# date: $(date)\n" > AUTHORS printf "# this file is auto-generated by scripts/gen-authors.sh\n\n" >> AUTHORS git log --format='%an <%ae>' --reverse --date=short master | awk '!seen[$0]++' | sort >> AUTHORS # if necessary, update your name here. for example: jdoe -> John Doe sed -i '' 's/^jdoe/John Doe/g' AUTHORS