mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
ba2dcccd79
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
9 lines
133 B
Plaintext
9 lines
133 B
Plaintext
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;
|