#!/bin/bash
if [[ -x /usr/bin/xcrun ]] ; then
  exec /usr/bin/xcrun otool "${@}"
elif [[ -x /usr/bin/otool ]] ; then
  exec /usr/bin/otool "${@}"
else
  exec otool "${@}"
fi
