summaryrefslogtreecommitdiffstats
path: root/contrib/netbsd-tests/lib/libppath/plist_to_c
blob: f471b4e708fb2d10970ae3f435638ebe5509587a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

prog=$(basename $0)
usage()
{
	echo "usage: ${prog} symbol" 1>&2
	exit 1
}

if [ $# -ne 1 ]; then
	usage
fi

sed 's/\(["\]\)/\\\1/g' | \
${AWK:-awk} -v sym=$1 '
BEGIN	{ printf "const char " sym "[] = \""; }
	{ printf $0 "\\n"; }
END	{ print "\";"; }'

exit 0
OpenPOWER on IntegriCloud