The CGI scripts and tools that comprise movabletype have the perl binary name hard-coded
#!/usr/bin/perl -w
Unless I manually replace all these instances with
#!/usr/bin/env perl
use warnings;
it seems impossible to run movabletype under my private version of perl (installed with perlbrew). Is there some way I can run movabletype under the perlbrew perl without making these changes manually?