#! /bin/sh
#!perl -w # --*- Perl -*--
eval 'exec perl -x $0 ${1+"$@"}'
    if 0;
#------------------------------------------------------------------------------
#$Author: antanas $
#$Date: 2021-04-28 19:35:53 +0300 (Wed, 28 Apr 2021) $
#$Revision: 8738 $
#$URL: svn+ssh://www.crystallography.net/home/coder/svn-repositories/cod-tools/tags/v3.2.0/scripts/formula_sum $
#------------------------------------------------------------------------------
#*
#* Parse and print the chemical formula sum as described in the CIF
#* _chemical_formula_sum data item.
#*
#* USAGE:
#*   $0 sum.lst
#*   $0 sum1.lst sum*.lst
#**

use strict;
use warnings;
use COD::SOptions qw( getOptions );
use COD::SUsage qw( usage );
use COD::ToolsVersion qw( get_version_string );

#* OPTIONS:
#*   --help, --usage
#*                     Output a short usage message (this message) and exit.
#*   --version
#*                     Output version information and exit.
#**
@ARGV = getOptions(
    '--help,--usage' => sub { usage; exit },
    '--version'      => sub { print get_version_string(), "\n"; exit }
);

@ARGV = ("-") unless @ARGV;

use COD::Formulae::Parser::IUCr;

foreach my $filename ( @ARGV ) {
    my $p = COD::Formulae::Parser::IUCr->new;
    $p->Run($filename);
    $p->PrintFormula;
}
