$file = "test.txt"; print "Enter the username you want to remove from the information.txt file\n"; $user = ; open( FILE, $file) or die "cannot open > test.txt: $!"; while () { chomp; @array = ; @a = grep (!/^[$user]/, @array); print @a; }