#!/bin/sh

for i in "$@"; do
  echo -n "$i: "
  objdump -x "$i" | grep RPATH
done