Next Five Minute Lightning Talk: More screen(1) Hacks #5            

Manipulating Cut-and-Paste Data

    #!/bin/bash
    TMP=$(tempfile)
    ls -1tr ~/text/resume* | tail -1 > $TMP
    screen -X readbuf $TMP
    rm -f $TMP