in reply to print real newlines in place of literal ones

there are many ways i do it, depending on the situation...

  1. pick a seperator that won't appear in your text, like \0. set $/ to this value when parsing the config file
  2. use perl's heredoc syntax, and do the file
  3. use one of the fine Config modules from CPAN
  4. RECOMMENDED use my favourite config module, YAML.

~Particle *accelerates*