summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/testsuite/ln/ln-force-creates-soft-links
blob: cab8d1db7d079cd4227e820f44414b53809dd0de (plain)
1
2
3
4
5
echo file number one > file1
echo file number two > link1
busybox ln -f -s file1 link1
test -L link1
test xfile1 = x`readlink link1`