#!/bin/bash # $HeadURL$ $LastChangedRevision$ PROGNAME=${0##*/} SANDPIT=$(pwd) . $(ade-config ade_share_prefix)/include/adetestsupport.sh echo "creating files and directories ..." mkdir 3 touch file ln -s file 1 ln -s xxxx 2 echo "running adeinst in mode 2 ..." adeinst 1 2 3 echo "checking results ..." ls -1F 3 readlink 3/1 readlink 3/2 echo "all done"