# This is a commented line # blah blah blah :data :data #### sub get_info { my $infile = "template.dsc"; open (INFILE, "$infile") || die "Broken: $!"; my $content; while () { $content .= $_; }; # Remove Comments? close (INFILE); return $content; };