Tag: library

strace to find Library Calls

Display library calls strace -f -e open ls >/dev/null

Show Shared Libraries

Show shared libraries required by ssh program ldd /usr/bin/ssh

A Simple Logging Function for JavaScript

Prints all the arguments of the function. This function uses console.log if firebug is available – else, uses alert. function…