I am using gnome-terminal. Is it possible to make it(or any other terminal) beep whenever its output screen changes (like some new output line came)?

I want it for only one particular window.

有帮助吗?

解决方案

Possibly of use:

The GNU screen program has features for monitoring background windows for activity as well as inactivity.

http://www.gnu.org/software/screen/manual/screen.html#Monitor

Something called lTerm has "tabs with activity alerts"

http://lterm.sourceforge.net/

But at this point I'm turning into a meta search engine.

其他提示

$ ./myprogram | sed 's/$/\a/'

for example

$ for i in {1..10}; do echo $i; sleep 1; done | sed 's/$/\a/'
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top