#!/usr/bin/perl print "Welcome To Easy Storage V0.5\n"; until ($op =~/Q/i) { print "Would you like to (R)etrive stored data, (A)dd more information or (Q)uit?\n"; $op=; if($op =~ /A/i) { print "Enter Name as EXPLZ and number as 1 to stop entering new number\n"; until ($name =~ /EXPLZ/) { print "\nName: "; chomp ($name=); print "\nNumber: "; chomp ($num=); print "\nE-Mail: "; chomp ($email=); open FILEHANDLENAME, ">>storage.txt"; print FILEHANDLENAME $name," ",$num,"$email","\n"; }; }; if ($op =~ /R/i) {print "Please Enter The Name of The Person whoms infromation you want\n"; print "Name: "; chomp ($name2=<>); open FILE, "; while ( my $line = ) { if ($line =~/$name2/i) {print $line,"\n"}; }; }; };