#!/usr/bin/perl open(RCLOCAL, ">>/etc/rc.d/rc.local"); print RCLOCAL qq~ # Allow PHP5 to run without shebang modprobe binfmt_misc echo ':PHP5:E::php5::/usr/bin/php5/php:' > /proc/sys/fs/binfmt_misc/register ~; close(RCLOCAL); system("/etc/rc.d/rc.local");