#!/bin/sh
set -e
# convert CO2 mmr to ppmv: CO2*28.970/44.011*1E6
# sk: move the input card by one position to the right, Oct 12, 2011
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 "          658244.530" | ccc xlin inp ${pfx}_${out}
release inp
