lemmyvore, 1 year ago (edited 1 year ago) Run rsync, pipe to tee, and redirect the output to a named pipe (mkfifo). Open a second terminal and direct the named pipe into a grep command. Arrange the terminals in whatever way you want. <span style="color:#323232;">mkfifo mypipe </span><span style="color:#323232;">rsync | tee mypipe </span><span style="color:#323232;">grep "denied" < mypipe </span>
Run rsync, pipe to tee, and redirect the output to a named pipe (mkfifo). Open a second terminal and direct the named pipe into a grep command. Arrange the terminals in whatever way you want.
<span style="color:#323232;">mkfifo mypipe </span><span style="color:#323232;">rsync | tee mypipe </span><span style="color:#323232;">grep "denied" < mypipe </span>