Open for Appending
#Format: open(FILEHANDLE, ">> FILENAME"); #!/usr/bin/perl open(HANDLE, ">>newfile") || die print "Can't open newfile: $!\n"; print HANDLE "appended \"hello world\" to the end of newfile.\n";