Lines Matching full:ln
12 testing "create_hardlink" "ln file hlink && [ file -ef hlink ] &&
14 testing "create_softlink" "ln -s file slink && [ -L slink ] &&
19 testing "force_create_hardlink" "ln -f file hlink &&
23 testing "force_create_symlink" "ln -f -s file slink &&
29 testing "preserves_hardlinks" "ln file hlink 2>/dev/null || echo 'yes'" \
34 testing "preserves_symlinks" "ln -s file slink 2>/dev/null || echo 'yes'" \
39 testing "multilevel_symbolic_links" "ln -s dir slink &&
40 ln -s file slink && [ -L slink -a -L slink/file ] &&
44 testing "no_dereference" "ln -s dir slink &&
45 ln -n -s file slink 2>/dev/null || [ -L slink ] && readlink slink" \
49 testing "-T acts like -n" "ln -s dir slink &&
50 ln -Tsf file slink || [ -L slink ] && readlink slink" "file\n" "" ""
53 testing "-T with dir" "ln -Ts file dir 2>/dev/null || echo yes" "yes\n" "" ""
56 testing "-t" "ln -st . one/two three && readlink two three" "one/two\nthree\n" \
60 testing "create_multiple_hardlinks" "ln file* dir/ &&
65 testing "create_multiple_softlinks" "ln -s file* dir/ &&
71 testing "create_softlink_and_remove_sourcefile" "ln -s file slink &&
77 testing "create_hardlink_and_remove_sourcefile" "ln file hlink &&