Another Acknowledgements page update (fix for previous commit)
[openemr.git] / phpmyadmin / libraries / transformations / template_generator_mimetype.sh
blobedee55f2c5e2f1a74d7a66bf798e535b8546c74e
1 #!/bin/bash
2 # $Id$
4 # Shell script that adds a new mimetype without transform function.
6 # The filename should contain either 'mimetype_subtype' or 'mimetype'.
7 # The suffix '.inc.php' is appended automatically!
9 # Example: template_generator_mimetype.sh 'filename'
11 if [ $# == 0 ]
12 then
13 echo "Usage: template_generator_mimetype.sh 'filename'"
14 echo ""
15 exit 65
18 ./generator.sh 'TEMPLATE_MIMETYPE' "$1"
19 echo " "
20 echo "New MIMETYPE $1.inc.php added."