From 9f82edcf5eb18ccfb950cd924a884c8795bf7e95 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Thu, 8 Apr 2010 11:52:24 +0000 Subject: [PATCH] cleanup --- bin/irspy.pl | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/bin/irspy.pl b/bin/irspy.pl index 3a8918f..d72b9d7 100755 --- a/bin/irspy.pl +++ b/bin/irspy.pl @@ -1,7 +1,5 @@ -#!/usr/bin/perl -w +#!/usr/bin/perl -# $Id: irspy.pl,v 1.29 2007-09-18 16:58:18 mike Exp $ -# # Run like this: # YAZ_LOG=irspy,irspy_test IRSPY_SAVE_XML=1 perl -I../lib irspy.pl -t Quick localhost:8018/IR-Explain---1 Z39.50:amicus.oszk.hu:1616/ANY # YAZ_LOG=irspy,irspy_test sudo ./setrlimit -n 3000 -u mike -- perl -I../lib irspy.pl -t Main -a localhost:8018/IR-Explain---1 @@ -18,16 +16,16 @@ # I have no idea why this directory is not in Ubuntu's default Perl # path, but we need it because just occasionally overload.pm:88 # requires Scalar::Util, which is in this directory. +#use lib '/usr/share/perl/5.8.7'; -use lib '/usr/share/perl/5.8.7'; use Scalar::Util; - -use strict; -use warnings; use Getopt::Std; use ZOOM::IRSpy::Web; use Carp; +use strict; +use warnings; + $SIG{__DIE__} = sub { my($msg) = @_; confess($msg); -- 1.7.10.4