mirror of
https://git.busybox.net/busybox
synced 2025-05-10 12:43:48 +02:00
8 lines
133 B
Text
8 lines
133 B
Text
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;
|