in reply to Re^2: fetching and storing data from web.
in thread fetching and storing data from web.
orperl -ne 'print;' *.txt > all.csv
??? Those are a bit pointless, just concatenating files into another file, same as just doingfor file in *.txt; do cat "$file"; echo; done > newfile.csv
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"???cat *.txt > newfile.txt
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: fetching and storing data from web.
by nicolethomson (Initiate) on Feb 08, 2012 at 11:50 UTC |