You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
381 B
14 lines
381 B
#!/bin/bash
|
|
|
|
input=$1
|
|
marker=$2
|
|
file=$3
|
|
|
|
CONTRIBUTORS=`./scripts/contributors.js -f $input -m | tr '\n' '☺'`
|
|
if echo "$CONTRIBUTORS" | grep ERROR > /dev/null; then
|
|
echo "$CONTRIBUTORS" | tr '☺' '\n'
|
|
else
|
|
cat $file | sed -n "/${marker}-START/{p;:a;N;/${marker}-END/!ba;s%.*\n%${CONTRIBUTORS}%};p" | tr '☺' '\n' > README.tmp
|
|
cp README.tmp $file
|
|
rm README.tmp
|
|
fi |