From e7101eb1931f8c6ce56d791e2505bd89273c5c86 Mon Sep 17 00:00:00 2001 From: Hartmut Holzgraefe Date: Wed, 22 Nov 2000 22:53:33 +0000 Subject: this little scripts will collect the CREDITS files from all the ext/ and sapi/ subdirectories and put them all together into ext/standard/credit_[ext|sapi].h --- scripts/credits | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 scripts/credits (limited to 'scripts') diff --git a/scripts/credits b/scripts/credits new file mode 100755 index 0000000000..d627948b98 --- /dev/null +++ b/scripts/credits @@ -0,0 +1,9 @@ +#!/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 -- cgit v1.2.1