in reply to Re: Re: Renaming Files
in thread Renaming Files
#!/usr/bin/perl -w print 'test\n'; print "test\n"; __END__ test\ntest
Update:
perldoc perldata
String literals are usually delimited by either single or double quotes. They work much like quotes in the standard Unix shells: double-quoted string literals are subject to backslash and variable substitution; single-quoted strings are not (except for "\'" and "\\").
regards,
tomte
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Renaming Files
by thor (Priest) on Feb 20, 2003 at 12:36 UTC |