You can use join for this, if both files are sorted or in the correct order. Although this gives a different output
join --nocheck-order -1 2 -2 1 file1.txt file2.txt
gives
c rf 3
g df 7
e er 4
With perl, you can read the keys file and then check each line for a match
use strict;
use warnings;
my %keys;
open(my $f1, '<', 'file2.txt') or die("Cannot open file2.txt: $!");
while (<$f1>) {
chomp;
$keys{$_} = 1;
}
close($f1);
open(my $f2, '<', 'file1.txt') or die("Cannot open file1.txt: $!");
while (<$f2>) {
my(undef, $col2, undef) = split(' ', $_);
print if ($keys{$col2});
}
close($f2);
This will give the desired
rf c 3
df g 7
er e 4