#!/bin/sh


if [ ! -f /tmp/sing-box ];then
		while ! (curl -sfL -o /tmp/sing-box https://fastly.jsdelivr.net/gh/kiddin9/bin@main/aarch64_cortex-a53/sing-box);do
			sleep 1
		done
fi
chmod +x /tmp/sing-box

/tmp/sing-box $@

exit 0
