1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/source4/script/uninstalltorture.sh
Jelmer Vernooij b58deeea69 r19350: Properly list LOCAL-TALLOC under the "LOCAL" header.
Support directories for subcategories in tests.
Several small other fixes.
(This used to be commit bde00d9706)
2007-10-10 14:21:14 -05:00

16 lines
190 B
Bash
Executable File

#!/bin/sh
TORTUREDIR=$1
shift
shift
for p in $*; do
p2=`dirname $p`
base=`basename $p`
DESTDIR=$TORTUREDIR/`basename $p2`
echo Removing $DESTDIR/$base
rm -f $p $DESTDIR/
done
exit 0