Tag Archives: parse

PERL input and output files

To read an input file, edit your data and put it to an output file try this: #! /usr/bin/perl -w use strict; my $file = “in.csv”; my $outfile = “out.csv”; open(IN, “<$file”) or die “Could not open $file\n”; open(OUT, “>$outfile”) … Continue reading

Posted in Programming | Tagged , , , , , , | Leave a comment

First steps in Perl parsing CSV from Mamut to Joomla Virtuemart

Today at the office I was asked to help migrating the webshop from Mamut to Joomla Virtuemart. I installed the new webshop, and used the plugin CSVImport to import all data about the products. As allways Mamut was a pain … Continue reading

Posted in At the office, Programming | Tagged , , , , , , , , , , , , , | 3 Comments