This is how the diamond operator knows what filenames it should use:
it looks in @ARGV. If it finds an empty list, it
uses the standard input stream; otherwise it uses the list of files
that it finds. This means that after your program starts and before
you start using the diamond, you've got a chance to tinker with
@ARGV. For example, here we can process three
specific files, regardless of what the user chose on the command
line:
@ARGV = qw# larry moe curly #; # force these three files to be read
while (<>) {
chomp;
print "It was $_ that I saw in some stooge-like file!\n";
}