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