(root)/
gawk-5.2.2/
test/
fsrs.awk
BEGIN {
       RS=""; FS="\n";
       ORS=""; OFS="\n";
      }
{
        split ($2,f," ")
        print $0;
}