Help for this page
open(FILE, "datebook.txt") || die "Can't open datebook: $!\n"; while(<FILE>) { print if /Sir Lancelot/; } close(FILE);
Can't open datebook: No such file or directory