Revert PR85

This commit is contained in:
Jonathan Carter 2018-04-21 09:27:26 +02:00
parent 838b03b41f
commit f145cf6e07

View File

@ -440,16 +440,12 @@ do
# Just testing "$ii" != ${ii#$jj} would incorrectly match.
iii="$ii/"
# Exclude datasets
# * that are not named on the command line or
# * those whose prefix is not on the command line (if --recursive flag is set)
# Exclude datasets that are not named on the command line.
IN_ARGS='0'
for jj in "$@"
do
if [ "$jj" = '//' -o "$jj" = "$ii" ]
then
IN_ARGS=$(( $IN_ARGS + 1 ))
elif [ -n "$opt_recursive" -a "$iii" != "${iii#$jj}" ]
then
IN_ARGS=$(( $IN_ARGS + 1 ))
fi