summaryrefslogtreecommitdiffstats
path: root/src/gen_auc_txt.pl
blob: 62b259ad1c237f146da40a6d6e597f0cd8b80f19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl -w

# this script can generate a CSV file with the specified number of
# entries, which in turn can be used from osmo-auc.

use strict;

my $COUNT = $ARGV[0];
my $i;

for ($i = 0; $i < $COUNT; $i++) {
	printf("90170%010u,5,%032u,%032u,0000,%08u,0\n", $i, $i, $i, $i);
}