#!/bin/bash
for busybox in /usr/bin/busybox*;do
    [ -x "$busybox" ] && exec "$busybox" "${0##*/}" "$@"
done

exit 127
