#!/bin/sh

# run @ARGV without interpolating any arguments (just pass the
# arguments through to the child) then always exit 0.

# This shell script is safe to call from a taintperl program since it
# does not interpolate its arguments.

"$@"
exit 0
