1#!/usr/bin/awk -f23/^[0-9]+ \*\*\* .+ has set the topic to: .*$/ {4 # XXX: The code here potentially reformats the topic5 topic = $96 for (i = 10; i <= NF; i++)7 topic = topic " " $i89 # Append escape sequence for setting tmux pane title.10 $0 = $0 sprintf("\033]2;%s\033\\", topic)11}1213{14 print15 fflush()16}