Variable in embedded perl script
Hi,
In the ksh script below:
#!/usr/bin/ksh
perl <<-EOF
my \$var="hello world\n";
print "\$var";
EOF
I need to put the "\" character before all vars in the perl script.
How can I avoid it?
Thanks in advance,
Jose Luis
|