Created
July 6, 2021 15:08
-
-
Save hughrawlinson/770b82c5ffafce06f8560df8a90b315d to your computer and use it in GitHub Desktop.
Run a ChucK file with LiCK
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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