hey apropos, shell seems to have the problem that all child processes dont quite go away after they finish, not until pd exits as a whole. this is nasty with high spawning frequences because you get maximum number of open file errors. wasnt there a fix for this already? i think it was in all the recent versions of ggee.
Andrew (Andy) W. Schmeder about Re: [PD] regular expressions (symbol...
|I came up with a need to use regular expressions. |In my case my goal was to get the just the filename from a full path. | |Here is my hack; | |------------ |#!/usr/bin/perl | |$_ = $ARGV[0]; | |$_ =~ s|^.*/([^/]*)$|$1|; |print $_; |------------ | |Simply invoke the script via PD using | |... | | |[/home/me/pd/filename.pl $1( | | |[shell] | | |[pack s] | | |... | | | |andy |