Skip to content

Instantly share code, notes, and snippets.

@hughrawlinson
Created July 6, 2021 15:08
Show Gist options
  • Save hughrawlinson/770b82c5ffafce06f8560df8a90b315d to your computer and use it in GitHub Desktop.
Save hughrawlinson/770b82c5ffafce06f8560df8a90b315d to your computer and use it in GitHub Desktop.
Run a ChucK file with LiCK
#!/bin/bash
file="tests.ck"
echo $file
if [ $1 ]
then
file="$1"
fi
echo $file
chuck --loop &
PID=$!
# import.ck is a file that initializes the LiCK library
echo $(chuck + import.ck)
echo $(chuck + $file)
kill $PID
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment