Good Habits for More Secure Coding
Don't use this:
system
"/bin/command
$filename
"
;
Use this:
system
'/bin/command'
,
$filename
;
Wellington Perl Mongers
13 November 2007