Learn more about cloning repositories
You have read-only access
xxxxxxxxxx
echo file number one > file1
echo file number two > link1
set +e
busybox ln -s file1 link1
if [ $? != 0 ] ; then
exit 0;
fi
exit 1;
​
Everything looks good. We'll let you know here if there's anything you should know about.