Use a shell script to encapsulate the same search mechanism as used in the search Web script, but process the result further to display callgraphs of binary programs and libraries that relate to a given OSSelot package:
#!/bin/bash
if test -z "$1"
then
echo "Usage: $0 <package> <version>"
exit 1
fi
package="$1"
version="$2"
if test "$version"
then
package="$package/version-$version"
fi
wget -qO - https://www.osselot.org/callgraphs.php?$package
If the script is called "getcallgraphs" and invoked for the library libusb package as
Web interface to immediately use the above described script and search for a given package and display related callgraphs of binary programs and libraries
Look for other software packages that may have already been curated at OSSelot and display related callgraphs of binary program and libraries
Interfaces to obtain list of licenses and entire disclosure documents