From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/usr/local/bin/perl
# -*- perl -*-
# Copyright (c) 2009 AdCopy
# Author: Jeff Weisberg
# Created: 2009-Sep-16 12:00 (EDT)
# Function: get - using bdb file directly
#
# $Id: yenta_get_direct,v 1.1 2011/01/12 19:43:54 jaw Exp $
use strict;
my $map = shift @ARGV;
my $file = shift @ARGV;
my $key = shift @ARGV;
my $y = AC::Yenta::Direct->new( $map, $file );
my $v = $y->get($key);
print dumper($v), "\n";