summaryrefslogtreecommitdiff
path: root/contrib/rpbatch.pl
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/rpbatch.pl')
-rw-r--r--contrib/rpbatch.pl14
1 files changed, 0 insertions, 14 deletions
diff --git a/contrib/rpbatch.pl b/contrib/rpbatch.pl
deleted file mode 100644
index 0f1c50e..0000000
--- a/contrib/rpbatch.pl
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env perl
-#
-# Copyright (C) 2003 Shawn Betts
-# Execute a sequence of commands read from stdin.
-
-$ratpoison = $ENV{RATPOISON} || 'ratpoison';
-
-while (<>) {
- chomp;
- push @accum, "-c";
- push @accum, "\"$_\"";
-}
-
-system ("$ratpoison @accum");