#!/bin/bash

if [ -f virustotal-key.txt ] ; then
    apikey=`cat virustotal-key.txt`
fi

java -cp target/malware-checker-1.0-SNAPSHOT-jar-with-dependencies.jar org.greenstone.virustotal.AddComment $apikey $*

		

