#!/bin/sh
set -e
# multiply input file by 0.012011
# sk: modified on 12 Oct 2011 to reverse the sign from -0.044 to 0.044
# sk: modified on 29 Jan 2015 to replace 0.044 with 0.012011
if [ $# -ne 3 ] ; then
  echo "Error in $0: invalid number of arguments $#"
  exit 1
fi
pfx=$1
inp=$2
out=$3
access inp ${pfx}_${inp}
echo "            0.012011" | ccc xlin inp ${pfx}_${out}
release inp
