The tail is the part of a list that comes after the head. It's also a unix command that shows the last lines of a file.

learn more… | top users | synonyms

-1
votes
2answers
32 views

Explain how prolog handles this query?

my_append([], L, L). my_append([H|T], L, [H|NewTail]):- my_append(T, L, NewTail). Here is a program that can appear in my exam. The output is here: ?- my_append([1,2,5], [3,4], L). L = [1, 2, 5, ...
0
votes
2answers
46 views

Cant get my if to work in my shellscript

To be as simple as I can be. I want this script to catch a line whitch say "hello" in the logfile called "out.log".. The problem I encounter is that it always get "echo expression evaluated as false" ...
0
votes
1answer
18 views

On AIX, doing a tail -f stop logback to log message on a file

I am using logback in a web application deployed on weblogic Logback is working well and produce an output file but each time i try to do a tail -f on this file, no more entry are written in the ...
1
vote
1answer
24 views

How to show only newly logged content in tail -f?

normally tail -f shows 10-15 already logged content.How can I avoid it? I only want to see newly logged content.Is there any switch in tail for that.Please advice.
2
votes
3answers
37 views

Tail script to write out contents of a file from the end up to a matched pattern

I'm looking for a solution to a smple variant to this tail question...hoping someone will know the solution. Basically I want to tail a file until a string/pattern is matched and then write the ...
0
votes
0answers
11 views

mysql show processlist can't exceeed 999 rows

when I do show processlist, the results won't exceed 999 rows. my server variable shows max_connections | 3000 why and how would I exceed 999 ...
1
vote
0answers
44 views

quick tail on a huge file on linux [migrated]

I need to get the last 10 million lines of a 100 million lines file. tail -n 10000000 $in_file>$out_file however the above command took more than 1 day and is still going. I guess I can use the ...
1
vote
3answers
60 views

Run tail -f for a specific time in bash script

I need a script that will run a series of tail -f commands and output them into a file. What I need is for tail -f to run for a certain amount of time to grep specific words. The reason it's a certain ...
1
vote
1answer
84 views

Adding a tail in Prolog

I'm having trouble understanding how prolog works with lists. I'm trying to write a function that will add a tail to a given list and returns a new list. but my implementation does not work and I ...
0
votes
1answer
81 views

Shell script to print one log entry for each match pattern

I am trying to have the output of a shell script display the last lines of a log file, that starts with specific strings. So basically I have a log file that reads: Tom Steve Tom 2 Steve 2 Anthony ...
0
votes
2answers
30 views

In Linux: Print last line of log file that starts with

I am trying to have the output of a single OS command display the last line of a log file, that starts with a specific string. So basically I have a log file that reads: Tom Paul Tom Steve ...
0
votes
0answers
16 views

Correcting bias in kernel tails (ksmooth r)

The tails of my kernel in r generated with ksmooth are clearly biased in the tails. I am interested in the best techniques to correct this bias. One possibility I am considering is to impose ...
0
votes
2answers
58 views

In bash, how to tail a fifo that is currently being written to, and then tail the fifo again, grepping for different text?

I have a process that is writing to standard out, and I want to be able to monitor the output by grepping for various strings while running tail -f. One way to do this is to write to a normal file and ...
1
vote
1answer
50 views

Equivalent for tail -f output\worker*.log in Powershell

I need to output several logfiles - while they are written - to the shell. In the unix version of my script this is achieved by tail -f output\worker*.log. Note the wildcard. In Powershell I tried ...
0
votes
1answer
76 views

Unix to tail solution for waiting for a specific string or quitting after a timeout

I am trying to improve a service (daemon) script to display tomcat output (when run from a tty) until the application is effectively started. Tomcat apps can take up to 10 minutes to start and it's ...
2
votes
2answers
100 views

Which is faster? `echo`ing a variable, or `tail`ing a long output file, or maybe `grep`ing the whole thing

I am curious which is faster in the following circumstance. I have output files of roughly 2MB, and many thousands of lines (anywhere we'll say between 15k - 50k). I am looking for a string at the ...
2
votes
2answers
55 views

Get a list of people who are logged in

I am trying to diplay the firstname and lastname of all the user that a logged in by parsing the output of finger. This is what I have tried: finger | awk '{$1=$4=$5=$6=$7=$8=$9=$10=""; print}' | ...
0
votes
1answer
23 views

tail of youngest files

How do I run tail -n 1 -q on the files which are older than Apr 1 in this directory? -rw-r--r-- 1 mzhsteno kemi 1,6M Mar 31 15:09 1-3-uco-opt-Q7W-Q127W-pm6-1.0-15-008.out -rw-r--r-- 1 mzhsteno kemi ...
0
votes
3answers
233 views

How do I use Head and Tail to print specific lines of a file

I want to say output lines 5 - 10 of a file(as arguments passed in). How could I use head and tail to do this? where firstline = $2 and lastline = $3 and filename = $1 running it should look like ...
0
votes
2answers
49 views

How to determine the latest stable TuxOnIce version as compactly as possible

So what I'm intending to do here is to determine the latest stable version of TuxOnIce from http://tuxonice.net/downloads/all/ (currently tuxonice-for-linux-3.8.0-2013-02-24.patch.bz2). What ...
0
votes
1answer
69 views

Python - Tailing a logfile - sleep() versus inotify?

I'm writing a Python script that needs to tail -f a logfile. The operating system is RHEL, running Linux 2.6.18. The normal approach I believe is to use an infinite loop with sleep, to continually ...
0
votes
1answer
64 views

How to colorize Rails logs in Multitail?

Output of tail logs/development.log in XFCE Terminal: multitail log/development.log Rails adds escape codes to log files automatically. See development.log file: ^[[1m^[[36m (84.1ms)^[[0m ...
1
vote
1answer
100 views

Bash assigning tail value to a variable

Trying to create a workflow with a "output" file that updates from time to time. #!/bin/bash echo "start flow" tail -n output.txt So when the last line of "output.txt" is created, then it ...
1
vote
3answers
59 views

Which of two is better in file manipulation?

I have a file 'tbook1' with lot of numerical values (+2M). I have to perform the below in bash (Solaris / RHEL): Do following: Remove 1st and last 2 lines Remove (,") & (") Substitute (, ) with ...
0
votes
2answers
54 views

Build a tail program with argc and argv[]

The exercise requests a tail program with argc and argv[].It will have a specific number of lines.The user will put a N argument and than the program will print the last n lines.When I call this ...
0
votes
0answers
56 views

Run bash command when specific entry found in syslog

I have a linux box that occasionally puts an error in the syslog. That error indicates a critical problem with the system. I'm working on resolving the root of the problem. However, I'd like a good ...
1
vote
2answers
197 views

Powershell - Tail Windows Event Log? Is it possible?

How can i use powershell to tail a specific windows event log? Is it possible?
1
vote
2answers
119 views

Unix cat and tail for output of java program

I have a java program that takes time to execute and I have to make 10 runs of it and I am interested in only last 5 lines of the output, the actual output runs in hundreds of lines. Since I want to ...
0
votes
3answers
73 views

Is it possible to append a stdout to another stdout?

I'm trying to run a command like: gunzip -dc file.gz | tail +5c So this will output the binary file contents minus the first 4 bytes to stdout, and it works. Now I need to append 3 extra bytes to ...
0
votes
2answers
57 views

formatting output from tail -f

I'm trying to follow a log-file via tail -f and filtering it with grep: tail -f <log-file> | grep -F '<some string>' I want the output to be updated at the same line instead of getting ...
-3
votes
1answer
112 views

Java linked list add tail [closed]

I am writing a function that adds a given new node to the tail. I figured it out but what should I do, if the list is empty? Make the node as the head, since technically that would be adding to the ...
1
vote
1answer
99 views

the Hill estimator in R

I am trying to find a package that has a working version of the Hill estimator for extreme value theory in R. Does anyone know what package exists to do this? A couple of searches produced several ...
1
vote
0answers
46 views

Merging tags in LXML

So: we have an XML document: <items> <item id="1">some text</item> <item id="2">some <b>bold</b> text which carried onto the next line,</item> <item ...
-1
votes
1answer
31 views

Automatic reopening file for reading if it was recreated

There is some (compiled and not my) program A, which starts .log file from the beginning each time, when I launch it. And I wrote the program B to work with this log using this approach: ...
0
votes
1answer
133 views

Paramiko / ssh / tail + grep hangs

Situation: I want to tail remote logs over ssh with paramiko. channel.exec_command('tail -f log.log') works fine channel.exec_command('tail -f log.log | grep "filter" ') hangs Cannot understand ...
0
votes
1answer
24 views

Using the csh tail by exception

Please can you help me, I am trying to strip some data from the end of a file, say file.oot. I would like to use tail command, returning everything except the last n lines. I would like to limit ...
1
vote
1answer
162 views

How can I avoid needing to keep the Arduino Serial Monitor open when sending commands using the php_serial library through PHP/shell?

I am attempting to send serial commands to an Arduino Uno through PHP using the php_serial class written by Remy on an Mac OS X machine, and for some reason, it only works when I have the ...
2
votes
2answers
83 views

echo removes a blank last line from the output

I am using a script to obtain the last n-2 lines of a file using a command and then using echo to print this lines into a file. last_n2_lines=`tail -n+3 $file` echo "$last_n2_lines" >> $file ...
0
votes
1answer
141 views

print formatted output in bash variables

I am using a bash script where I must store the last n-2 lines of a file in a variable. The command I use for this is last_n2_lines=`tail -n+3 $file` Now whenever i echo the $last_n2_lines ...
3
votes
1answer
178 views

How to kill a tail process that's execute using nodejs ssh2?

How to kill tail process that i execute in this query ? var c = new Ssh2(); c.on('connect', function() { console.log('Connection :: connect'); }); c.on('ready', function() { ...
1
vote
0answers
83 views

J2SSH ChannelInputStream read method locked with tail -f

J2SSH ChannelInputStream read method is able to get the output from a command. However, if I try to execute a "tail -f file.txt > output.txt &" (bash) via J2SSH, read method gets locked. I think ...
0
votes
0answers
76 views

Display large data [closed]

I am working with data size (data.frame) of about 50K rows and 100 columns. I am still new at using R so after each data reshaping, I would like to check part of my data to make sure that the data is ...
1
vote
1answer
64 views

sqlite trigger output

I'm trying to create a script that will act like tail -f but for sqlite files. Thinking that triggers were the best answer I tried the following: CREATE TEMPORARY TRIGGER "tailf" AFTER INSERT ON ...
9
votes
3answers
246 views

How can I follow a file like “Tail -f” does in Java without holding the file open (Prevent rename/delete)

i'd like to "Tail -f" a lot of logfiles from within a java app. I've gotten this to work by monitoring the size and last update and repeatedly opening the file and reading the last few bytes whenever ...
1
vote
5answers
204 views

how to continuously display a file of its last several lines of contents

I am trying to find a Unix command (combination, maybe) on how to continuously display a file of its last several lines of contents. But during this displaying, I want some of the top lines are always ...
3
votes
0answers
55 views

How to tail a log file in C++? [duplicate]

Possible Duplicate: Implement “tail -f” in C++ I am adding a new thread to a C++ application that will be solely responsible for "tailing" a specific log file. Basically, the thread should ...
2
votes
0answers
156 views

tail with grep remote log files

I have this code to tail remote log files: def do_tail( session, file ) session.open_channel do |channel| channel.on_data do |ch, data| puts "[#{file}] -> #{data}" ...
4
votes
1answer
256 views

tail -f into grep into cut not working properly

i'm trying to build a shell script to monitor some log files. I'm using a command like this: tail -f /var/somelog | grep --line-buffered " some test and p l a c e h o l d e r" | cut -f 3,4,14 -d " " ...
1
vote
1answer
243 views

tail -f, awk and output to file >

I am attempting to filter a log file and am running into issues, what I have so far is the following, which does not work, tail -f /var/log/squid/accesscustom.log | awk '/username/;/user-name/ {print ...
4
votes
1answer
78 views

About Tail recursive optimization

I used the below two functions to test the Tail recursive optimization under MSVC08 int TailRecursively1(int i) { return TailRecursively1(i); } int TailRecursively2(std::string str) { return ...

1 2 3 4 5 6