From c43a1bbcf7c1240f2d3904b5c5b13d1621332ed6 Mon Sep 17 00:00:00 2001 From: brunsch Date: Wed, 3 Jun 1998 20:26:37 +0000 Subject: Process modules for perl scripts. --- bin/Process.pm | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bin/Process.pm (limited to 'bin/Process.pm') diff --git a/bin/Process.pm b/bin/Process.pm new file mode 100644 index 00000000000..46deb2f572e --- /dev/null +++ b/bin/Process.pm @@ -0,0 +1,12 @@ +$inc = "Process_Unix.pm"; +$DIR_SEPARATOR = "/"; + +if ($^O eq "MSWin32") +{ + $inc = "Process_Win32.pm"; + $DIR_SEPARATOR = "\\"; +} + +require $inc; + +1; \ No newline at end of file -- cgit v1.2.1