4 # Shell script that adds a new function file using a template. Should not be called directly
5 # but instead by template_Generator.sh and template_generator_mimetype.sh
10 # $3: (optional) Description
14 echo "Please call template_generator.sh or template_generator_mimetype.sh instead"
18 functionupper
="`echo $2 | tr [:lower:] [:upper:]`"
19 functionlower
="`echo $2 | tr [:upper:] [:lower:]`"
21 cat $1 |
sed "s/\[ENTER_FILENAME_HERE\]/$functionupper/" |
sed "s/\[enter_filename_here\]/$functionlower/" >> $2.inc.php
28 echo "./add_message.sh '\$strTransformation_${functionlower}' '$3'"
32 echo "Created $2.inc.php"