Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: I want specific word to be stored in a CSV file

by Anonymous Monk
on Jun 20, 2015 at 07:39 UTC ( [id://1131243]=note: print w/replies, xml ) Need Help??


in reply to I want specific word to be stored in a CSV file

Here you go priyasony, just fill in the blanks, Path::Tiny, perlintro, split, Modern Perl
#!/usr/bin/perl -- use strict; use warnings; Main( @ARGV ); exit( 0 ); sub Main { my( @dirs ) = @_; my @files = GetFiles( @dirs ); for my $file( @files ){ SnackFiles( $file ); } } sub GetFiles { ... } sub SnackFiles { my( $file ) = @_; ... split ... }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1131243]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-24 23:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found