First release

This commit is contained in:
Ralph J.Mayer 2014-08-25 20:01:43 +02:00
parent 9a1476b7c4
commit 627f7724ee
16 changed files with 10030 additions and 9 deletions

18
scripts/csv2rem.pl Normal file
View file

@ -0,0 +1,18 @@
#!/usr/bin/perl
# CSV zu CSV für ikiwiki
# Version 1
use strict;
use warnings;
my $file = $ARGV[0] or die "Need to get CSV file on the command line\n";
open(my $data, '<', $file) or die "Could not open '$file' $!\n";
while (my $line = <$data>) {
chomp $line;
my @fields = split ";" , $line;
print "REM $fields[2]-$fields[1]-$fields[0] +10 $fields[6] $fields[10] %b\n";
}