Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ln-preserves-hard-links « ln « testsuite - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47fb989615450d752cac0b29271c1b03485b1b1e (plain)
1
2
3
4
5
6
7
8
echo file number one > file1
echo file number two > link1
set +e
busybox ln file1 link1
if [ $? != 0 ] ; then
	exit 0;
fi
exit 1;