From a1fd8b11f22d2fe9a4be69b5117824e4a5bc3b96 Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Mon, 17 Jan 2011 00:47:00 -0800 Subject: [PATCH] 'use warnings' instead of 'perl -w' --- feedGnuplot.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/feedGnuplot.pl b/feedGnuplot.pl index 3215514..0e4fc3b 100755 --- a/feedGnuplot.pl +++ b/feedGnuplot.pl @@ -1,5 +1,6 @@ -#!/usr/bin/perl -w +#!/usr/bin/perl use strict; +use warnings; use Getopt::Long; use Time::HiRes qw( usleep ); use IO::Handle;