Initial public busybox upstream commit
[busybox4maemo] / testsuite / ln / ln-preserves-hard-links
1 echo file number one > file1
2 echo file number two > link1
3 set +e
4 busybox ln file1 link1
5 if [ $? != 0 ] ; then
6         exit 0;
7 fi
8 exit 1;