I have used \ at the end of shell scripts to avoid long lines, and improve code readability.
But I cannot do it in Perl, what am I doing wrong ? Do I have to escape them in any way?
I mean something like:
my $dbh = DBI->connect("DBI:mysql:database=xxxxxxx;host=xxxxxt", "xxxx", "xxxxxx", \%dbattr) or die ("Bla bla bla bla");