medit/moo/mooutils/xml2h.sh

9 lines
172 B
Bash
Raw Normal View History

2005-06-22 11:20:32 -07:00
if [ x$2 = x ]; then
echo usage: "$0 <var_name> <file_name>"
exit 1
fi
echo "static const char *$1 = \"\""
sed 's/"/\\"/g' $2 | sed 's/^\(.*\)$/"\1\\n"/'
echo ";"