mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-17 08:00:48 +01:00
16 lines
217 B
Bash
16 lines
217 B
Bash
|
#! /bin/sh
|
||
|
# idea and sed lines taken straight from flex
|
||
|
|
||
|
cat <<!EOF
|
||
|
/* File created via mkskel.sh */
|
||
|
|
||
|
char *crunched_skel[] = {
|
||
|
!EOF
|
||
|
|
||
|
sed 's/\\/&&/g' $* | sed 's/"/\\"/g' | sed 's/.*/ "&",/'
|
||
|
|
||
|
cat <<!EOF
|
||
|
0
|
||
|
};
|
||
|
!EOF
|