I want to run a command and see all of its output on the left hand side, while simultaneously searching/grepping for particular lines on the right hand side. In other words, I want a temporary vertically split screen in my CLI, ideally with scrollback on each side of the split, but where I expect the left hand side to be scrolling thousands of lines quickly, while on the right hand side is a slow accumulation of “matches” to my grep.

Is this possible today? What tools would you recommend to accomplish this?

EDIT: To be clear, a one-liner is preferable over learning tmux or screen, although this does motivate me to perhaps begin learning tmux.

In case this is an X/Y problem: The specific command I’m trying to run is an rsync simulation (dry-run) where I want to both check that the command works, and subsequently check that there are no denied errors. The recommended way to do this is to run the command twice, as follows (but I want to combine it into one pass):

# first specify the "-n" parameter so rsync will simulate its operation. You should use this before you start:
rsync -naP --exclude-from=rsync-homedir-local.txt /home/$USER/ $BACKUPDIR/

# check for permission denied errors in your homedir:
rsync -naP --exclude-from=rsync-homedir-local.txt /home/$USER/ $BACKUPDIR/ | grep denied
  • notabot@lemm.ee
    link
    fedilink
    arrow-up
    2
    ·
    6 months ago

    Sorry for th slow answer, I’ve been away. There is a way, if it’s still useful to you:

    First, create a named fifo, you only need to do this once:

    mkfifo logview
    

    Run your rsync in one pane, with a filtered view in the second:

    tmux new 'rsync ...options... |& tee logview' \; split-window -h 'grep "denied" logview'
    

    Replace ...options... with your normal rsync command line.

    That should give you a split view, with all the normal messages on the left, and only messages containing ‘denied’ on the right.

    The |& makes sure we capture both stdout and stderr, tee then writes them to the fifo and displays them. split-window tells tmux to create a second pane, and display the output of grep.