Acme-Cow-Interpreter
view release on metacpan or search on metacpan
og `/usr/local/bin/cow.exe', depending on your operating
system. Then you should be able to put `#!/usr/local/bin/cow' on
top of your Cow programs.
If you rename the Perl program to something other than
`/usr/local/bin/cow.pl', you must change the code below
accordingly.
*/
#include <unistd.h> /* for execv */
#include <stdio.h> /* for stderr */
#include <errno.h> /* for errno */
#include <string.h> /* for strerror */
#include <stdlib.h> /* for EXIT_FAILURE */
extern int main(int argc, char **argv);
int main(argc, argv)
int argc;
char **argv;
{
int ret;
static char file[] = "/usr/local/bin/cow.pl";
ret = execv(file, argv);
fprintf(stderr, "execv() of %s failed: %s\n",
file, strerror(errno));
exit(EXIT_FAILURE);
}
( run in 1.062 second using v1.01-cache-2.11-cpan-49f99fa48dc )