#!/bin/sh INPUT_PATH=$1 INPUT_FILE=`basename $1` # The byte array is named like the file, but in lower case with dots replaced by underscores ARRAYNAME=`echo $INPUT_FILE | sed -e 's/\\./_/g'` OUTPUT_FILE=$ARRAYNAME.h BYTES=`wc -c $INPUT_PATH | awk '{print $1}'` echo "Converting input file:" echo " $INPUT_PATH" echo "Creating include file:" echo " $OUTPUT_FILE" cat > $OUTPUT_FILE <> $OUTPUT_FILE echo "};" >> $OUTPUT_FILE