Lines Matching +full:local +full:- +full:dir
20 ## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ##
34 local dirname=$1
35 local dircnt=$2
36 local filecnt=$3
39 tst_res TINFO "Filling each dir with $filecnt files".
40 while [ $dircnt -gt 0 ]; do
41 dirname=$dirname/dir$dircnt
42 ROD mkdir -p $dirname
44 local fcnt=0
45 while [ $fcnt -lt $filecnt ]; do
49 dircnt=$((dircnt-1))
55 create_tree "dir" 10 10
61 local src="$1"
62 local dst="$2"
64 if diff -r $src $dst; then
68 ls -R $src
70 ls -R $dst
76 local src="$1"
77 local dst="$2"
88 local args="$1"
89 local src="$2"
90 local dst="$3"
92 if [ -f $src ]; then
97 ROD rm -r $dst
104 2) cp_test -l "file" "file_copy";;
105 3) cp_test -s "file" "file_copy";;
106 4) cp_test -R "dir" "dir_copy";;
107 5) cp_test -lR "dir" "dir_copy";;