1#!/bin/sh 2for i in $* 3do 4 grep "EXPORT_SYMBOL.*(.*)" "$i" \ 5 | sed -e "s/EXPORT_SYMBOL.*(/ /" \ 6 | sed -e "s/).*$//" | sed -e "s/^ //" 7done 8