source: trunk/gsdl/bin/script/gsWget.pl@ 1743

Last change on this file since 1743 was 1743, checked in by sjboddie, 23 years ago

Had a bit of a go at getting the building code to build from http and
ftp addresses on windows. There's still a bit of an issue with the way
wget handles windows file paths but the perl code is all done I think

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1#!/usr/bin/perl -w
2
3###########################################################################
4#
5# A component of the Greenstone digital library software
6# from the New Zealand Digital Library Project at the
7# University of Waikato, New Zealand.
8#
9# Copyright (C) 1999 New Zealand Digital Library Project
10#
11# This program is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2 of the License, or
14# (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24#
25###########################################################################
26
27
28# This program will download the specified urls (http:, ftp: and file:)
29
30
31BEGIN {
32 die "GSDLHOME not set\n" unless defined $ENV{'GSDLHOME'};
33 die "GSDLOS not set\n" unless defined $ENV{'GSDLOS'};
34 unshift (@INC, "$ENV{'GSDLHOME'}/perllib");
35}
36
37use util;
38
39# wget should live in the Greenstone directory structure
40# we'll bail if we can't find it
41my $exe = &util::get_os_exe ();
42my $cmd = &util::filename_cat ($ENV{'GSDLHOME'}, "bin", $ENV{'GSDLOS'}, "wget");
43$cmd .= $exe;
44if (! -e "$cmd") {
45 die "gsWget.pl failed: $cmd doesn't exist\n";
46}
47
48# command-line parameters
49my @quoted_argv = map { "\"$_\"" } @ARGV;
50my $args = join(' ', @quoted_argv);
51$cmd .= " $args";
52
53# run the command
54my $status = system($cmd);
55
56# We should check the error status of wget; unfortunately this
57# is set to 1 even when we exit successfully, so we ignore it.
58#
59#$status /= 256;
60#if ($status != 0) {
61# print STDERR "Error executing $cmd: $!\n";
62# exit($status);
63#}
64
65print "\nDone: $cmd\n";
Note: See TracBrowser for help on using the repository browser.