Help for this page
# open a file for reading in the current directory open(FILEHANDLE,"< some_file"); ... # be polite and close the file when you're done :) close(FILEHANDLE);
# by the way ... # write something to a file print FILEHANDLE "some line of text\n";