http://www.perlmonks.org?node_id=951388


in reply to Re^2: fetching and storing data from web.
in thread fetching and storing data from web.

what exactly are you trying to achieve with
perl -ne 'print;' *.txt > all.csv
or
for file in *.txt; do cat "$file"; echo; done > newfile.csv
??? Those are a bit pointless, just concatenating files into another file, same as just doing
cat *.txt > newfile.txt
And these are not magically creating csv format for you - it's just the same text as in the input files. No idea what you mean with "how to import it to db perl -MCPAN -e shell"???

Replies are listed 'Best First'.
Re^4: fetching and storing data from web.
by nicolethomson (Initiate) on Feb 08, 2012 at 11:50 UTC
    <code> true tospo >/code> taking time to learn things, might be a kid's level code i did.