1
0
mirror of https://github.com/sheumann/hush.git synced 2025-01-19 14:31:27 +00:00
hush/define.sh
2000-02-23 18:17:35 +00:00

24 lines
289 B
Bash
Executable File

#!/bin/sh
# define.sh - creates an include file full of #defines
#
# SYNOPSIS
#
# define.sh POSIX_ME_HARDER ...
#
# <GPL>
for i ; do
case $1 in
!!*!!)
echo "// #define" `echo $1 | sed 's/^!!\(.*\)!!$/\1/'`
shift
;;
*)
echo "#define $1"
shift
;;
esac
done
# </GPL>