[Csnd-dev] CS7 script for testing
Steven Yi <[email protected]>
| Newsgroups | gmane.comp.audio.csound.devel |
|---|---|
| Message-ID | <CANtcCs5Zy30d6ZWZDPW8kHs7tNzUpr7KmuLvVtnmp4uGTZpBKw@mail.gmail.com> |
Hi All, Perhaps a bit simple, but I've got Csound 6 as my main csound on my system but want to have easy access to CS7 for testing and experimenting. I wrote a small script for this: #!/bin/sh export CS7DIR=~/work/csound/cs7/build/ export OPCODE7DIR64=$CS7DIR $CS7DIR/csound $@ I saved this as "cs7" in a folder on my path (e.g., could put it in /usr/local/bin; I have it in ~/bin which is on my PATH). If you use this you'll have to edit the CS7DIR variable and also make sure the file is executable (i.e., 'chmod +x ./cs7'). Cheers! Steven