echo "Comparing dump directory with restore directory"
echo "Looking at the extended attributes (EAs)"
echo "EAs on dump"
- _get_eas_on_path $dump_dir | tee $here/$seq.ea1 | _dir_filter
+ _get_eas_on_path $dump_dir | tee $seq.ea1 | _dir_filter
echo "EAs on restore"
_get_eas_on_path $restore_dir/$dump_sdir \
| sed -e "s#$restore_sdir\/##" \
- | tee $here/$seq.ea2 \
+ | tee $seq.ea2 \
| _dir_filter
- diff -s $here/$seq.ea1 $here/$seq.ea2
+ diff -s $seq.ea1 $seq.ea2
}