# ltrace(1) ```markdown ltrace [opts] [prg] -f .......... follow child processes on fork(2) -p .... attach to running process -o ... log output into -l . show who calls into lib matched by -C .......... demangle ``` # Example List which program/libs call into `libstdc++`: ```bash ltrace -l '*libstdc++*' -C -o ltrace.log ./main ```