diff options
Diffstat (limited to 'norns_load')
-rwxr-xr-x[-rw-r--r--] | norns_load | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/norns_load b/norns_load index 05a7907..f68f457 100644..100755 --- a/norns_load +++ b/norns_load @@ -1,2 +1,19 @@ #!/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 + |