#!/bin/bash

if [[ $# -ne 2 ]]; then
  echo "Usage: $0 project filename"
  exit 1
fi

HOST="${NORNS:-norns.local}"
BASE="code/"
PROJECT="$1"
FILE="$2"

FILE="$BASE$PROJECT/$2"
ESCAPED="$(sed 's/"/\\"/g' <<<"$FILE")"

norns_shell "ws://$HOST:5555" <<EOF
norns.script.load("$ESCAPED")
EOF