mirror of
https://github.com/sheumann/hush.git
synced 2024-11-14 20:09:05 +00:00
9 lines
130 B
Plaintext
9 lines
130 B
Plaintext
|
echo file number one > file1
|
||
|
echo file number two > link1
|
||
|
set +e
|
||
|
busybox ln file1 link1
|
||
|
if [ $? != 0 ] ; then
|
||
|
exit 0;
|
||
|
fi
|
||
|
exit 1;
|