What is the linux text editor command that I can see output in real time?

Asked

Viewed 115 times

2

What is the linux text editor command that I can see output in real time?

For example I want to give a "vim" in the access log of my apache I want to see GET entering the log in real time which parameter I use ?

2 answers

7


You can use the:

tail -f nome_do_arquivo

or:

tailf nome_do_arquivo

1

less file.log and after opening the file shift+f will play the same role as Tail. It also allows you to browse the file, search, etc. Anyway, it is a "vi read-only". More details see in this article.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.