N
nntp
My program needs @ARGV[1] as an input string. In this input string,
sometimes I need " and new line \n. How do I do this?
Currently I am doing this:
perl perlfile.pl "somestring"
Can I do
perl perlfile.pl "somestring\"afterquote"
perl perlfile.pl "somestring\nanotherline"
sometimes I need " and new line \n. How do I do this?
Currently I am doing this:
perl perlfile.pl "somestring"
Can I do
perl perlfile.pl "somestring\"afterquote"
perl perlfile.pl "somestring\nanotherline"