can anyone point in the direction of converting sasdata sets into text
files?
thanks
--
Benjamin F. Jurado
IT&E
GMU
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
how can i store the results in a array,hash,reference...
use File::Find;
use strict;
my $foo1="/path/to/something";
sub foo{
#some filtering operations or even passing to another object or subroutine
}
find(\foo,$foo1);
I have tried passing \@foo and access this via $foo1->() but it did not
work.