I am looking for a specific symbol in a bunch of shared libraries, I am using the following command:
find . -iname "*.so" | nm -D //loop over output of find | grep -e symbol
How can I tell nm -D to loop over find results ? Thanks
I am looking for a specific symbol in a bunch of shared libraries, I am using the following command:
find . -iname "*.so" | nm -D //loop over output of find | grep -e symbol
How can I tell nm -D to loop over find results ? Thanks