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