#!/usr/bin/perl -wT # amend @INC without taint use FindBin; my $path = $FindBin::RealBin; $path =~ /^(.+)$/; $path = $1; unshift @INC, $path; require DebugApp;