Sublime text 2 -f tail in windows

I was wondering if the exalted text of the 2 "tail -f" file can, as in linux, I use windows btw.

I wanted to see the apache error log file in xampp.

Notepad ++ is there a plugin that can do this in sublime text 2?

+6
source share
3 answers

I don’t know if this is possible or not, but I usually use Baretail , which handle pretty well as a tail.

What I really love with Baretail is a regular expression that you can define to highlight part of your log file. For example, put each line with

  • error inside with red background, bold and white text,
  • warning with orange background, italics and white text,
  • etc.

enter image description here

Otherwise, it seems that you are not the only one who requested such functions (you should transfer the request to userecho).

+6
source

There is a project called SublimeTail , which is currently under development. Currently available for download at Alpha from Github.

+2
source

For a simple solution, you can use the GNU Win32 utilities in Windows SO. In this you can find tail -f UNIX / Linux and other useful commands.

0
source

Source: https://habr.com/ru/post/922291/


All Articles