Here's a very simple script that does something like that:
I hope that will get you started!#!/usr/local/bin/perl -w use strict; my %data; while (<>) { next if /Header/; next if /Footer/; my($id, $name) = split ' ', $_; $data{$id} = $name; }
In reply to Re: Input Formats
by chipmunk
in thread Input Formats
by jakeeboy
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |