php-src/scripts/credits

10 lines
198 B
Plaintext
Raw Normal View History

#!/bin/sh
awkprog='
BEGIN { FS = "\n"; RS = "" }
{ print "CREDIT_LINE(\""$1"\",\""$2"\");" }'
for what in ext sapi
do
awk "$awkprog" $what/*/CREDITS | sort -f > ext/standard/credits_$what.h
done