#!/usr/bin/perl -w use strict; use warnings; use ZOOM; if (@ARGV != 1) { print STDERR "Usage: $0 target\n"; exit 1; } my $conn = new ZOOM::Connection($ARGV[0]); foreach my $opt (qw(search present delSet resourceReport triggerResourceCtrl resourceCtrl accessCtrl scan sort extendedServices level_1Segmentation level_2Segmentation concurrentOperations namedResultSets encapsulation resultCount negotiationModel duplicationDetection queryType104 pQESCorrection stringSchema)) { print $conn->option("init_opt_$opt") ? " " : "!"; print "$opt\n"; }