From dcb01a2da89e581046f8b7b03eaf2245f77ab4e0 Mon Sep 17 00:00:00 2001
From: einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>
Date: Fri, 10 Nov 2006 17:46:46 +0000
Subject: Added shebang scripts for Windows

git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@503 4979c152-3d1c-0410-bac9-87ea11338e46
---
 dists/win32/shebang-activeperl.pl | 24 ++++++++++++++++++++++++
 dists/win32/shebang-vanilla.pl    | 24 ++++++++++++++++++++++++
 2 files changed, 48 insertions(+)
 create mode 100644 dists/win32/shebang-activeperl.pl
 create mode 100644 dists/win32/shebang-vanilla.pl

diff --git a/dists/win32/shebang-activeperl.pl b/dists/win32/shebang-activeperl.pl
new file mode 100644
index 00000000..6fce8c24
--- /dev/null
+++ b/dists/win32/shebang-activeperl.pl
@@ -0,0 +1,24 @@
+#!c:\perl\bin\perl
+# Use this script to convert the beginnings of files to the path to ActivePerl 
+# if you are installing with ActivePerl.
+
+  opendir DIR, ".";
+  @perlfiles = grep /\.pl/, readdir DIR;
+  closedir DIR;
+
+  foreach $file (@perlfiles) {
+    open FH, "+<$file";
+    
+    @file = <FH>;
+
+    seek(FH, 0, 0);
+    truncate(FH, 0);
+
+    $line = shift @file;
+
+    print FH "#!c:\\perl\\bin\\perl\n";
+    print FH @file;
+
+    close(FH);
+    
+  }
diff --git a/dists/win32/shebang-vanilla.pl b/dists/win32/shebang-vanilla.pl
new file mode 100644
index 00000000..bcc69498
--- /dev/null
+++ b/dists/win32/shebang-vanilla.pl
@@ -0,0 +1,24 @@
+#!c:\vanilla-perl\perl\bin
+# Use this script to convert the beginnings of files to the path to ActivePerl 
+# if you are installing with Vanilla Perl.
+
+  opendir DIR, ".";
+  @perlfiles = grep /\.pl/, readdir DIR;
+  closedir DIR;
+
+  foreach $file (@perlfiles) {
+    open FH, "+<$file";
+    
+    @file = <FH>;
+
+    seek(FH, 0, 0);
+    truncate(FH, 0);
+
+    $line = shift @file;
+
+    print FH "#!c:\\vanilla-perl\\perl\\bin\n";
+    print FH @file;
+
+    close(FH);
+    
+  }
-- 
cgit v1.2.3