#!/usr/bin/env perl use lib (-d 'lib' ? ('lib') : ()); use File::Which; use App::EzPz::UserStore; use strictures 1; die "Usage: ezpz-admin-repl ezmlm-bindir htpasswd-file" unless @ARGV == 2; { package Eval::WithLexicals::Scratchpad; use vars qw($users); $users = App::EzPz::UserStore->new( ezmlm_bindir => $ARGV[0], htpasswd_file => $ARGV[1], ); } do +which('tinyrepl'); exit 0;