21 lines
417 B
Perl
21 lines
417 B
Perl
|
|
#!/usr/bin/perl
|
||
|
|
#
|
||
|
|
# Example command lines:
|
||
|
|
#
|
||
|
|
# perl generate_csv.pl
|
||
|
|
#
|
||
|
|
# 20260319 ChatGPT
|
||
|
|
# $Header$
|
||
|
|
#
|
||
|
|
# Purpose:
|
||
|
|
# Placeholder script for later CSV export from the BOM and assumptions data.
|
||
|
|
#
|
||
|
|
|
||
|
|
use strict;
|
||
|
|
use warnings;
|
||
|
|
|
||
|
|
print "generate_csv.pl: placeholder script\n";
|
||
|
|
print "Later revision will read ../data/bom.json and ../data/assumptions.json\n";
|
||
|
|
print "and produce a CSV summary under ../export/.\n";
|
||
|
|
|
||
|
|
exit 0;
|