#!/bin/sh -x # Check in a given library if contains a given symbol SYMBOL="gethostbyname" for LIBR in `ls`; do if [ ! -d $LIBR ]; then echo "Check $LIBR" nm $LIBR | grep $SYMBOL fi done
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 1472 | Yariv Sheizaf | scripts dir |