mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-12 16:46:33 -04:00
19 lines
283 B
Bash
19 lines
283 B
Bash
#!/bin/sh
|
|
|
|
# $NetBSD: mkskel.sh,v 1.3 2009/04/14 22:03:07 lukem Exp $
|
|
|
|
# idea and sed lines taken straight from flex
|
|
|
|
cat <<!EOF
|
|
/* File created via mkskel.sh */
|
|
|
|
const char *crunched_skel[] = {
|
|
!EOF
|
|
|
|
sed 's/\\/&&/g' $* | sed 's/"/\\"/g' | sed 's/.*/ "&",/'
|
|
|
|
cat <<!EOF
|
|
0
|
|
};
|
|
!EOF
|