From b7f92dd6ee590e9298f4669bf2f2e87fa1625571 Mon Sep 17 00:00:00 2001 From: othocaeS Date: Tue, 26 Jul 2016 11:47:44 -0400 Subject: [PATCH] removed erroneous script --- scripts/basic_plot.pl | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100755 scripts/basic_plot.pl diff --git a/scripts/basic_plot.pl b/scripts/basic_plot.pl deleted file mode 100755 index 1a87cf4..0000000 --- a/scripts/basic_plot.pl +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env perl - - -use feature 'say'; -#use autodie qw(:all); - - -=pod - -open my $GP, '|-', 'gnuplot'; - -print {$GP} <<'__GNUPLOT__'; - set terminal x11 - # set output "test.png" - set xrange [-5:5]; - plot sin(x); - pause -1; -__GNUPLOT__ - -close $GP; - -=cut - -say "Press any key to exit."; -my $a=<>; -system("gnuplot file"); -#`gnuplot file`;