#!/bin/sh
#-------------------------------------------------------------------------------
# dl_cb2bib -- Script for calling cb2Bib in "Download Reference to cb2Bib" mode
# cb2Bib Tools
# Copyright (C) 2006, 2008 by Pere Constans
# constans@molspaces.com
# See the LICENSE file that comes with this distribution
#
# Usage: dl_cb2bib tmp_imported_reference_file
#-------------------------------------------------------------------------------

if test "$#" != 1; then
  cat <<EOF
Script for calling cb2Bib in "Download Reference to cb2Bib" mode
Usage: $0 tmp_imported_reference_file
EOF
  exit 2
fi

cb2bib $1
