Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

47
votes
23answers
42k views

Looking for a windows equivalent of the unix tail command

I'm looking for the equivalent of the unix 'tail' command that will allow me to watch the output of a log file while it is being written to.
43
votes
23answers
24k views

Best tail (log file visualization) freeware tool? [closed]

I have many programs generating tons of logs in files. What freeware do you know, either for Windows or for multi-platforms (if they are in java for instance), able to tail (display the end of) those ...
33
votes
12answers
14k views

Get last n lines of a file with Python, similar to tail

I'm writing a log file viewer for a web application and for that I want to paginate through the lines of the log file. The items in the file are line based with the newest item on the bottom. So I ...
20
votes
2answers
6k views

Unix tail equivalent command in Windows Powershell

I have to look at the last few lines of a large file (typical size is 500MB-2GB). I am looking for a equivalent of Unix command tail for Windows Powershell. A few alternatives available on are, ...
17
votes
6answers
12k views

Java IO implementation of unix/linux “tail -f”

I'm wondering what techniques and/or library to use to implement the functionality of the linux command "tail -f ". I'm essentially looking for a drop in add-on/replacement for java.io.FileReader. ...
15
votes
7answers
5k views

How can I tail a remote file?

I am trying to find a good way to tail a file on a remote host. This is on an internal network of Linux machines. The requirements are: Must be well behaved (no extra process laying around, or ...
15
votes
12answers
6k views

The best Tail GUI [closed]

What is the one single best GUI program for tailing log files you've come across?
10
votes
8answers
4k views

Streaming log(txt) viewer

Anybody in the know of a viewer (or Notepad++ plugin) that can read txt files in a streaming way? I would like to see for example the last 10 lines of a txt file that gets appended continiously.
9
votes
1answer
214 views

Best way to split several heads from a list with Erlang?

So, Erlang is a real joy to work with, but there's one problem I run into occasionally, that I'm wondering if there is a nicer way to solve. Often, I find myself needing to split several items from a ...
9
votes
5answers
4k views

How can I get the source code for the linux utility tail?

this command is really very useful but where I can get the source code to see what is going on inside . thanks .
6
votes
3answers
282 views

Python to emulate remote tail -f?

We have several application servers, and a central monitoring server. We are currently running ssh with "tail -f" from the monitoring server to stream several text logfiles in realtime from the app ...
5
votes
1answer
122 views

Scala Stream confusion

Running: lazy val s: Stream[Int] = 1 #:: 2 #:: {val x = s.tail.map(_+1); println("> " + x.head); x} s.take(5).toList I'd expect: > List(2, 3) > List(2, 3, 4) List(1, 2, 3, 4, 5) And I ...
5
votes
3answers
94 views

How to track a log file in TCL

Say there is a file log.txt and some kind of log is being appended to it permanently. I want to track that file in the TCL environment. I have tried this but it didn't worked. set log [open log.txt ...
5
votes
5answers
315 views

Development.log log file isn't logging Rails SQL queries

I am following Michael Hartl's Rails Tutorial Here: http://ruby.railstutorial.org/chapters/modeling-and-viewing-users-one#top I use this command to track the SQL queries in a separate window: tail ...
5
votes
4answers
151 views

How does erlang handle case statements mixed with tail recursion

Let's say I have this code here: do_recv_loop(State) -> receive {do,Stuff} -> case Stuff of one_thing -> do_one_thing(), do_recv_loop(State); ...
5
votes
4answers
407 views

Haskell tail-recursion performance question for Levenshtein distances

I'm playing around with calculating Levenshtein distances in Haskell, and am a little frustrated with the following performance problem. If you implement it most 'normal' way for Haskell, like below ...
5
votes
2answers
3k views

Minimum Websocket Nodejs Tail Example

I'm trying to create a stream of data to the browser using websocket. The data is the output of a log file. (tail -f filename) Using node js, I've manage to log into stdout, but I haven't been able to ...
5
votes
10answers
3k views

Ending tail -f started in a shell script

I have the following. A Java process writing logs to the stdout A shell script starting the Java process Another shell script which executes the previous one and redirects the log I check the log ...
5
votes
6answers
1k views

Binary “tail” a file

I would guess most people on this site are familiar with tail, if not - it provides a "follow" mode that as text is appended to the file tail will dump those characters out to the terminal. What I am ...
4
votes
7answers
106 views

Succinct way to print all lines up until the last line that matches a given pattern

I'm trying to find a succinct shell one-liner that'll give me all the lines in a file up until some pattern. The use case is dumping all the lines in a log file until I spot some marker indicating ...
4
votes
2answers
46 views

Tail Sampling Logs

I have a process that needs to do periodic processing on an ever-growing logfile. Right now, the way I do this is pretty simple (I'll include the bash script if you're truly curious). Start up tail ...
4
votes
3answers
118 views

strawberry perl: no File::Tail.pm. CPAN failed to install the module

I'm using strawberry perl to tail a file using use File::Tail. I got the error message of the following: Can't locate File/Tail.pm in @INC (@INC contains: c:\strawberry\perl\lib ...
4
votes
1answer
96 views

Programmatic equivalent of 'hadoop fs -tail -f'

I want to tail an hdfs file programmatically using the org.apache.hadoop.fs.FileSystem API. Is there a way to tail the file using the API in a way which is equivalent to hadoop fs -tail -f command?
4
votes
4answers
856 views

Tail call optimization for fibonacci function in java

I was studying about Tail call recursion and came across some documentation that mentioned. Sun Java doesn't implement tail call optimization. I wrote following code to calculate fibonacci number in ...
4
votes
7answers
745 views

Do a tail -F until matching a pattern

I want to do a tail -F on a file until matching a pattern. I found a way using awk, but IMHO my command is not really clean. The problem is that I need to do it in only one line, because of some ...
4
votes
3answers
438 views

How to tail -f the latest log file with a given pattern

I work with some log system which creates a log file every hour, like follows: SoftwareLog.2010-08-01-08 SoftwareLog.2010-08-01-09 SoftwareLog.2010-08-01-10 I'm trying to tail to follow the latest ...
4
votes
1answer
444 views

Java Scanner won't follow file

Trying to tail / parse some log files. Entries start with a date then can span many lines. This works, but does not ever see new entries to file. File inputFile = new File("C:/test.txt"); ...
4
votes
4answers
1k views

Implement “tail -f” in C++

I want to create a small code in C++ with the same functionality as "tail-f": watch for new lines in a text file and show them in the standard output. The idea is to have a thread that monitors the ...
4
votes
3answers
1k views

How do you continuously read a file in Java?

I'm trying to figure out how to continuously read a file and once there is a new line added, output the line. I'm doing this using a sleep thread however it just seems to blow through the whole file ...
4
votes
1answer
281 views

Haskell tail function for empty lists

I have a problem with a function that should only return the tail of a list. The functions is myTail and should give a useable result, even if the input is an empty list. I want to understand all 3 ...
4
votes
8answers
783 views

How to implement a pythonic equivalent of tail -F?

What is the pythonic way of watching the tail end of a growing file for the occurrence of certain keywords? In shell I might say: tail -f "$file" | grep "$string" | while read hit; do #stuff ...
4
votes
9answers
2k views

How to get the PID of a process that is piped to another process in Bash?

I am trying to implement a simple log server in Bash. It should take a file as a parameter and serve it on a port with netcat. ( tail -f $1 & ) | nc -l -p 9977 But the problem is that when the ...
4
votes
2answers
280 views

following a log file over http

For security reasons (I'm a developer) I do not have command line access to our Production servers where log files are written. I can, however access those log files over HTTP. Is there a utility in ...
4
votes
4answers
662 views

Value of the last element of a list

how to get the value of the last element of a List? I've noted that List.hd (or .Head) return an item, while List.tl (or .Tail) returns a List. Is rev the List and get the hd the only way around? ...
4
votes
3answers
851 views

Apply formatting to unix shell

I've been looking at some server logs using tail -f recently, and have thought that it'd be much easier to see some things if I could format the output. Really all I'm looking for is a way to perhaps ...
4
votes
2answers
2k views

What's the Solaris equivalent to the BSD's 'tail -n100'?

I've looked this up a thousand times, and I always forget it, so, here for eternity: Solaris has a bit of an awkward syntax for tail. How do I do the equivalent of BSD's tail -nN? What I want are ...
4
votes
4answers
751 views

Stateful tail (only shows the new lines from the last execution)

I want to be able to see how many lines were added to a file since the last quering without reading the whole file again. Something like : ptail my_file | fgrep "[ERROR]" | wc -l A solution in ...
3
votes
2answers
68 views

Tailing Rolling Files

I have a directory full of rolling log files that I would like to be able to use tail on. The files are named as such: name modified 00A.txt Dec 27 19:00 00B.txt Dec 27 19:01 00C.txt Dec ...
3
votes
1answer
88 views

Can you supress asset messages when tailing the development.log?

During development of Ruby on Rails applications I have the development log constantly tailing via tail -f log/development.log. I have only started developing in Rails a few weeks ago, so I don't ...
3
votes
5answers
271 views

How to 'grep' a continuous stream

Is that possible to use grep on a continuous stream. What I mean is sort of a tail -f <file> command, but with grep on the output in order to keep only the lines that interest me. I've tried ...
3
votes
3answers
129 views

what if tail fails while reading from pipe

distinguish stdout from stderr on pipe So, related to the link above, I have a child who is executing tail and parent is reading its out put via a pipe. dup2(pipefd[1], STDOUT_FILENO); ...
3
votes
0answers
91 views

Capturing standard out from tail -f “follow”

I am trying to capture the output from tail in follow mode, where it outputs the text as it detects changes in the file length - particularly useful for following log files as lines are added. For ...
3
votes
2answers
352 views

How do I tail a log file without locking in perl

This is how I am doing it right now but it locks the file. #!/usr/bin/perl use Env qw( $USERNAME ); use File::Tail; use strict; use warnings; my $file = $ARGV[0]; print "$file\n"; my $fileTail = ...
3
votes
1answer
237 views

Understanding the “tail -f in python”

I have created a very simple python script: def read_then_follow(file): for line in file: yield line while True: line = file.readline() if not line: ...
3
votes
3answers
295 views

How can I remove all but the last 10 lines from a file?

Is it possible to keep only the last 10 lines of a lines with a simple shell command? tail -n 10 test.log delivers the right result, but I don't know how to modify test.log itself. And tail -n 10 ...
3
votes
4answers
417 views

Detecting a File Delete on an Open File

I am opening a file with read access and allowing subsequent read|write|delete file share access to the file (tailing the file). If the file is deleted during processing is there a way to detect that ...
3
votes
8answers
712 views

What's the opposite of head? I want all but the first N lines of a file

Given a text file of unknown length, how can I read, for example all but the first 2 lines of the file? I know tail will give me the last N lines, but I don't know what N is ahead of time. So for a ...
3
votes
5answers
182 views

tailf for windows

I found tail2win but it is a paid product. Are there any good freeware or shareware out there?
3
votes
6answers
663 views

“tailing” a binary file based on string location using bash?

I've got a bunch of binary files, each containing an embedded string near the end of the file but at different places (only occurs once in each file). I need to extract the part of the file starting ...
3
votes
2answers
220 views

How to output lines 800-900 of a file with a unix command?

I want to output all lines between a and b in a file. This works but seems like overkill: head -n 900 file.txt | tail -n 100 My lack of unix knowledge seems to be the limit here. Any suggestions?

1 2 3 4