문제

I'd want to ask you something, that maybe is unfeasible. I would need to make a list of programs that use a certain c system function (e.g., mkdir()). Is there any smart way to do that in Linux Ubuntu? I don't know, maybe combining apt-get source with grep, or something like that. Such a list has not to be filled with any existent program that uses that function, I'd just need some of them (e.g., the ones that I have installed on my pc). Thanks in advance.

도움이 되었습니까?

해결책

Function names don't change after compilation, so you may simply look for it in the compiled application file. Make a grep on binary file without dissambling. It will be there.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top