Insert a newline in a perl -e statement?
- by lydonchandra
If I do this in bash
perl -e '$x; $y'
How can I insert a newline between the character ; and $y?
I don't want to re-type the whole line, I just want to move my cursor to the position and then insert a newline.
Is this possible? Many thanks.