1#!/bin/sh 2 3for nm in `cat $1` ; do 4 n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'` 5 echo "#undef je_${n}" 6done 7