С GNU sed:
sed -E '/PREV/{G;s/PREV(.*)\n(\S+).*/\2\1/};h' infile
Разъяснения:
/PREV/ { # if the current line matches PREV
G # append hold space to pattern space
s/PREV(.*)\n(\S+).*/\2\1/ # replace PREV with first word from appended line,
# drop newline and rest of appended line
}
h # store pattern space in hold space
Или, с небольшими изменениями для переносимости:
sed '/PREV/{G;s/PREV\(.*\)\n\([^[:blank:]]\{1,\}\).*/\2\1/;};h' infile