#!/bin/sh
# $Id: ldd-path,v 1.1 2007/07/09 19:30:28 tom Exp $
# Edit the output of ldd for the given parameters, yielding only the
# absolute pathnames.
ldd $* | sed \
	-e 's/([^)]*)//g' \
	-e 's/^.*=>//' \
	-e 's/[ 	][ 	]*//g' \
	-e '/^$/d'
