2
votes
1answer
70 views
Haskell tail function for empty lists
Hi,
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 wa …
0
votes
2answers
39 views
tail read a growing dynamic file and extract two columns and then print a graph.
whats the best way to read a 1 GB file that gets time series data logged in it and generate a real time graph with two of its columns (one time and other a number)? I see that you …
6
votes
7answers
2k 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 …
2
votes
7answers
140 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 hi …
0
votes
0answers
68 views
what does tail + number does? What about head [closed]
I just called this command ls -l | tail +3. Firstly, ls -s, produces 3 lines, adding piping strips first line and then prints each file names on a separate line. How does it do th …
0
votes
2answers
30 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. I …
1
vote
4answers
124 views
How to get the PID of a process that is piped to another process in Bash?
Hi,
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 …
2
votes
2answers
66 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 her …
15
votes
15answers
2k views
Best tail (log file visualization) freeware tool ?
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 (displ …
8
votes
14answers
3k 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.
1
vote
3answers
141 views
Value of the last element of a list
Hi,
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 …
1
vote
3answers
107 views
How To watch a file write in PHP?
I want to make movement such as the tail command with PHP,
but how may watch append to the file?
2
votes
2answers
145 views
Building grep strings dynamically
I am writing a shell script to do a "tail" on a growing log file. This script accepts parameters to search for, and incrementally greps the output on them.
For example, if the scr …
1
vote
2answers
91 views
Oddity with PHP tail -n 1 returning multiple results
I had this question... answered and very nice it was too. But, oddity has emerged whereby if the log file has a unique last line, (i.e. the first few words are different to the pre …
0
votes
3answers
134 views
How to tail -f a file (or similar) for a specified interval?
I am working on adding some nagios alerts to our system -- some of which will monitoring the rate of certain events hitting the nginx/apache logs (or parsing values from those logs …
