/* The author, Ari Johnson, hereby relinquishes any copyright privileges
 * to the content of this file.  It is hereby placed in the public domain
 * free of any copyright restrictions.
 */

#include <unistd.h>

int main(int argc, char *argv[]) {
  const char *script = "/usr/local/sbin/virtual_filter.rb";
  execv(script, argv);
}

