mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-11 21:39:52 +00:00
10 lines
337 B
Bash
10 lines
337 B
Bash
|
#!/bin/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
|