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

ln-preserves-soft-links « ln « testsuite - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8123ece33adbe48f2d91a972b9c3fe941fddfd7 (plain)
1
2
3
4
5
6
7
8
9
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;