I\'ve got a folder in linux, which is contained several shared object files (*.so). How I can find function in shared object files using objdump and bash functions in linux?
nm is simpler than objdump, for this task. nm -A *.so | grep func should work. The -A flag tells nm to print the file name.
nm
objdump
nm -A *.so | grep func
-A