freebsd-dev/contrib/netbsd-tests/lib/libppath/plist_to_c
Enji Cooper 57718be8fa Import the NetBSD test suite from ^/vendor/NetBSD/tests/09.30.2014_20.45 ,
minus the vendor Makefiles

Provide directions for how to bootstrap the vendor sources in
FREEBSD-upgrade

MFC after 2 weeks
Discussed with: rpaulo
Sponsored by: EMC / Isilon Storage Division
2014-10-02 23:26:49 +00:00

21 lines
270 B
Bash
Executable File

#!/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