1echo file number one > file1
2echo file number two > link1
3set +e
4busybox ln file1 link1
5if [ $? != 0 ] ; then
6	exit 0;
7fi
8exit 1;
9