#!/your/perl/here use strict; use warnings; my $last_line; while (<>) { if ( m/^Action:/ ) { print $last_line; } $last_line = $_; } #### perl find_devices new_elements #### perl -ne 'print $x if /^Action:/; $x=$_;' new_elements
## perl find_devices new_elements ##
## perl -ne 'print $x if /^Action:/; $x=$_;' new_elements