monitor command outputs in separate windows within a terminal
2
votes
1
answer
460
views
For a list of input text, I want to execute a repetitive command using each element from the list. In addition I also need to monitor the results of each of these commands in parallel. So I am looking for a solution to display the repetitive commands output in separate windows in a single terminal console; probably need a form of terminal multiplexer?
So far I have the following:
for i in
command1 find msgs/Poly
; do echo command2 echo "$i" ; multitail -l 'command2 echo "$i"' ; done
which seems to open only one window at a time.
Asked by Vivek
(121 rep)
Apr 1, 2015, 03:12 PM
Last activity: Oct 25, 2017, 12:10 AM
Last activity: Oct 25, 2017, 12:10 AM