mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-17 20:00:58 +01:00
11 lines
236 B
Bash
11 lines
236 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
(echo "#ifndef _HAVE_USAGE_H"; echo "#define _HAVE_USAGE_H") > usage.h
|
||
|
|
|
||
|
|
echo -n "#define PCP_HELP " >> usage.h
|
||
|
|
|
||
|
|
cat usage.txt | sed -e 's/^/"/' -e 's/$/\\n" \\/' >> usage.h
|
||
|
|
|
||
|
|
echo "\"\\n\"" >> usage.h
|
||
|
|
echo "#endif" >> usage.h
|