1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
#! /bin/sh
#!perl -w # --*- Perl -*--
eval 'exec perl -x $0 ${1+"$@"}'
if 0;
#------------------------------------------------------------------------------
#$Author: antanas $
#$Date: 2017-05-24 20:10:55 +0300 (Tr, 24 geg. 2017) $
#$Revision: 5322 $
#$URL: svn://www.crystallography.net/cod-tools/tags/v2.3/scripts/utf8-to-cif $
#------------------------------------------------------------------------------
#*
#* Convert Unicode characters into CIF escape sequences.
#*
#* USAGE:
#* $0 input1.cif input*.cif
#**
use strict;
use warnings;
use COD::CIF::Unicode2CIF qw( unicode2cif );
use COD::SOptions qw( getOptions );
use COD::SUsage qw( usage );
use COD::ToolsVersion;
#* 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 'cod-tools version ',
$COD::ToolsVersion::Version, "\n";
exit }
);
use open ":encoding(UTF-8)";
binmode( STDIN, ":encoding(UTF-8)" );
binmode( STDOUT, ":encoding(UTF-8)" );
while(<>) {
print unicode2cif( $_ );
}
|