open(text,"text.txt") or die ("error: text.txt failed\n"); #line
17
while(<text>)
{
print $_;
}
close(text) or die("error: close text.txt failed\n"); #line
22bash-2.05$ perl -Tcw index.pl Unquoted string "text" may clash with future reserved word at index.pl line 17. Unquoted string "text" may clash with future reserved word at index.pl line 22. index.pl syntax OK How do I fix it? Thanks in advance. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
