Scrolling output with ccze
Clash Royale CLAN TAG#URR8PPP
up vote
4
down vote
favorite
I love the default fancy output of ccze, but I can't seem to get it scroll property. Executing
tail -f something.log | ccze
from an X terminal works, but I can't scroll back once the screen has been filled (shift+pgup doesn't do anything).
How can I get it to work as expected?
terminal colors
migrated from serverfault.com Apr 21 '16 at 16:51
This question came from our site for system and network administrators.
add a comment |
up vote
4
down vote
favorite
I love the default fancy output of ccze, but I can't seem to get it scroll property. Executing
tail -f something.log | ccze
from an X terminal works, but I can't scroll back once the screen has been filled (shift+pgup doesn't do anything).
How can I get it to work as expected?
terminal colors
migrated from serverfault.com Apr 21 '16 at 16:51
This question came from our site for system and network administrators.
as far as I can see, that is not possible with ccze. With multitail it is, although its colouring capabilities are not comparable to ccze/colorize.
– natxo asenjo
Apr 21 '16 at 11:38
it makes me think then how people actually use this think.. or what for.. :(
– Kristof Jozsa
Apr 21 '16 at 12:00
add a comment |
up vote
4
down vote
favorite
up vote
4
down vote
favorite
I love the default fancy output of ccze, but I can't seem to get it scroll property. Executing
tail -f something.log | ccze
from an X terminal works, but I can't scroll back once the screen has been filled (shift+pgup doesn't do anything).
How can I get it to work as expected?
terminal colors
I love the default fancy output of ccze, but I can't seem to get it scroll property. Executing
tail -f something.log | ccze
from an X terminal works, but I can't scroll back once the screen has been filled (shift+pgup doesn't do anything).
How can I get it to work as expected?
terminal colors
terminal colors
edited Nov 19 at 16:31
Stephen Kitt
157k23343418
157k23343418
asked Apr 21 '16 at 9:57
Kristof Jozsa
1234
1234
migrated from serverfault.com Apr 21 '16 at 16:51
This question came from our site for system and network administrators.
migrated from serverfault.com Apr 21 '16 at 16:51
This question came from our site for system and network administrators.
as far as I can see, that is not possible with ccze. With multitail it is, although its colouring capabilities are not comparable to ccze/colorize.
– natxo asenjo
Apr 21 '16 at 11:38
it makes me think then how people actually use this think.. or what for.. :(
– Kristof Jozsa
Apr 21 '16 at 12:00
add a comment |
as far as I can see, that is not possible with ccze. With multitail it is, although its colouring capabilities are not comparable to ccze/colorize.
– natxo asenjo
Apr 21 '16 at 11:38
it makes me think then how people actually use this think.. or what for.. :(
– Kristof Jozsa
Apr 21 '16 at 12:00
as far as I can see, that is not possible with ccze. With multitail it is, although its colouring capabilities are not comparable to ccze/colorize.
– natxo asenjo
Apr 21 '16 at 11:38
as far as I can see, that is not possible with ccze. With multitail it is, although its colouring capabilities are not comparable to ccze/colorize.
– natxo asenjo
Apr 21 '16 at 11:38
it makes me think then how people actually use this think.. or what for.. :(
– Kristof Jozsa
Apr 21 '16 at 12:00
it makes me think then how people actually use this think.. or what for.. :(
– Kristof Jozsa
Apr 21 '16 at 12:00
add a comment |
2 Answers
2
active
oldest
votes
up vote
4
down vote
accepted
ccze
uses the curses
output mode by default. (n)curses
is a screen drawing library typically used by fullscreen applications. It switches to the terminal emulator's so-called "alternate screen" which does not have a scrollbar buffer, and the contents of the other, "normal screen" is restored upon exit.
Instead of this, you should use its ansi
output format which is enabled by any of the -A
, --raw-ansi
, -m ansi
or --mode=ansi
command line options.
add a comment |
up vote
0
down vote
I use ccze
with less
to scroll into logs:
ccze -A /var/log/logstash/logstash-plain.log | less -R
New contributor
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
ccze
uses the curses
output mode by default. (n)curses
is a screen drawing library typically used by fullscreen applications. It switches to the terminal emulator's so-called "alternate screen" which does not have a scrollbar buffer, and the contents of the other, "normal screen" is restored upon exit.
Instead of this, you should use its ansi
output format which is enabled by any of the -A
, --raw-ansi
, -m ansi
or --mode=ansi
command line options.
add a comment |
up vote
4
down vote
accepted
ccze
uses the curses
output mode by default. (n)curses
is a screen drawing library typically used by fullscreen applications. It switches to the terminal emulator's so-called "alternate screen" which does not have a scrollbar buffer, and the contents of the other, "normal screen" is restored upon exit.
Instead of this, you should use its ansi
output format which is enabled by any of the -A
, --raw-ansi
, -m ansi
or --mode=ansi
command line options.
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
ccze
uses the curses
output mode by default. (n)curses
is a screen drawing library typically used by fullscreen applications. It switches to the terminal emulator's so-called "alternate screen" which does not have a scrollbar buffer, and the contents of the other, "normal screen" is restored upon exit.
Instead of this, you should use its ansi
output format which is enabled by any of the -A
, --raw-ansi
, -m ansi
or --mode=ansi
command line options.
ccze
uses the curses
output mode by default. (n)curses
is a screen drawing library typically used by fullscreen applications. It switches to the terminal emulator's so-called "alternate screen" which does not have a scrollbar buffer, and the contents of the other, "normal screen" is restored upon exit.
Instead of this, you should use its ansi
output format which is enabled by any of the -A
, --raw-ansi
, -m ansi
or --mode=ansi
command line options.
answered Apr 22 '16 at 7:08
egmont
2,4671812
2,4671812
add a comment |
add a comment |
up vote
0
down vote
I use ccze
with less
to scroll into logs:
ccze -A /var/log/logstash/logstash-plain.log | less -R
New contributor
add a comment |
up vote
0
down vote
I use ccze
with less
to scroll into logs:
ccze -A /var/log/logstash/logstash-plain.log | less -R
New contributor
add a comment |
up vote
0
down vote
up vote
0
down vote
I use ccze
with less
to scroll into logs:
ccze -A /var/log/logstash/logstash-plain.log | less -R
New contributor
I use ccze
with less
to scroll into logs:
ccze -A /var/log/logstash/logstash-plain.log | less -R
New contributor
New contributor
answered Nov 19 at 15:21
Genjo
55
55
New contributor
New contributor
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f278161%2fscrolling-output-with-ccze%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
as far as I can see, that is not possible with ccze. With multitail it is, although its colouring capabilities are not comparable to ccze/colorize.
– natxo asenjo
Apr 21 '16 at 11:38
it makes me think then how people actually use this think.. or what for.. :(
– Kristof Jozsa
Apr 21 '16 at 12:00