2

Is there any way to use the mouse wheel, or the terminal window slide bar, to look through a multitail log?

Ideally multitail would work almost exactly like tail (except with the obvious coloring).

greedybuddha
  • 123
  • 4

3 Answers3

2

Not without modifying the program (there's no mouse code in multitail). It uses ncurses, but uses none of the mouse-support functions. You can see this by inspecting the source-code.

Thomas Dickey
  • 75,040
  • 9
  • 171
  • 268
0

Probably the code changed since 2017 and multitail has now much more tails then in 2017. In the Debian version actually I was able to use the mouse after I changed the following in /etc/multitail.conf
the shell to bash in line line 1046

shell:/bin/bash

and in 1151 I changed to yes

scrollback_show_winnrs:yes
Max Muster
  • 153
  • 8
0

Tested in Ubuntu 22.04, multitail work with mouse out of the box, no need specific config.

Jérôme B
  • 111
  • 2