遍历动态库检索依赖

for tmp_file in `find ./ -maxdepth 1 -type f`; do ldd ${tmp_file} | grep -q "1234"; if [ $? -eq 0 ];then echo ${tmp_file};fi; done
posted @ 2025-02-21 11:10  ho966  阅读(6)  评论(0)    收藏  举报