use Fcntl 'SEEK_CUR'; use strict; use warnings; open FILE, ">chars"; for (0 .. 25) { print FILE chr(ord('a') + $_); } close FILE; system("type chars"); print "\n"; open(FILE,"+