<div dir="ltr">Don&#39;t know if this is useful to anyone, but here&#39;s a little Perl script that allows you to pass arguments to Chuck separated by spaces rather than colons. Run this and let Perl run Chuck for you with properly formatted arguments. Should be in the same directory as the Chuck file you&#39;re trying to run.<br>
<br>#!/usr/bin/perl<br>my $args = join(&quot;:&quot;, @ARGV);<br>$cmd = &quot;chuck YOUR_CHUCK_FILE.ck&quot; . &quot;:$args&quot;;<br>#print &quot;$cmd\n&quot;;<br>exec($cmd);<br><br>Run with a command something like this:<br>
./arg.pl arg1 arg2 arg3 etc<br><br>I could imagine something like this being expanded into some sort of on the fly programming front end, to pass arrays of pitches for example.<br></div>