Revision e370e860a3f13c7d4da53b8cabfe25177e34c288 authored by Keith Alcock on 16 October 2020, 05:30:49 UTC, committed by GitHub on 16 October 2020, 05:30:49 UTC
2 parent s 950941c + da94011
Raw File
parse_papers
#!/bin/bash

if [ "$#" != "1" ]; then
  echo "Usage:" $0 "<application.conf>"
  exit 1
fi

CONF=$1

sbt -Dconfig.file=$CONF "run-main org.clulab.reach.RunReachCLI"

back to top