in reply to Re^2: How to reorder a text file
in thread How to reorder a text file

$ tac file | perl -ne'push@a,$_;if(/^Title\b/){print reverse@a;@a=()}'