Perl -e insert new line
- by lydonchandra
Hi
If I do this in bash
perl -e '$x; $y'
Is there any character that can behave like a new line?
i.e. I want to do
perl -e '$x; some_chars_as_new_line $y'
where perl interpreter actually sees an actual new line.
$x;
$y;
Many thanks