#!/tools/bin/bash
set +h

/tools/bin/find /{,usr/}{bin,lib,sbin} -type f \
  -exec /tools/bin/strip --strip-debug '{}' ';' || true
echo -e "\n\nTotalseconds: $SECONDS\n"
exit
