Ronnie has asked for the wisdom of the Perl Monks concerning the following question:
Cheers, Ronnie#!/usr/bin/perl -w # ############################################################### # Extra Modules should be declared here. # # All these modules MUST be found on the server attempting to # # call this script. # ############################################################### # use strict ; # Enforce private + variables use lib '/home/interface/scripts/Perl_Modules' ; # Where ACC_Vario +us lives use lib '/home/interface/sectran/lib' ; # Where SECTRAN l +ives use sectran ; # In-House FTP Pe +rl Module use Cwd ; # Current Working + Directory Module use Mail::Sender; # Email module use File::Find ; use File::chmod ; use chgrp ; # print "\n\tMod Test Starts\n" ; # my $file = 'xxrctest' ; chgrp save $file or die "\n\tNo kin n d min ::$!\n" ; print "\n\tMod Test Ends\n" ;
Still non the wiser!Mod Test Starts Can't locate object method "chgrp" via package "save" (perhaps you for +got to loa d "save"?) at Mod_test.pl line 23. $
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Anyone used the chgrp module?
by monkey_boy (Priest) on Oct 20, 2005 at 12:29 UTC | |
|
Re: Anyone used the chgrp module?
by Moron (Curate) on Oct 20, 2005 at 13:23 UTC | |
by monkey_boy (Priest) on Oct 20, 2005 at 13:40 UTC |