tail for 15 mins


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting tail for 15 mins
# 1  
Old 03-10-2012
tail for 15 mins

Hi,

I want to write a script which will tail a particular file for 15 mins and then sleep for 10 mins and again tail for 15 mins. This cycle will go on for a limited period of time.
How can i ensure that tail command will run for 15 mins before calling sleep command

Thanks
# 2  
Old 03-10-2012
Hope this basic example helps.

Code:
tail -f logfile & PID=$!
sleep 900
kill $PID
tail -f logfile & PID=$!
sleep 600
kill $PID

# 3  
Old 03-10-2012
Something like this?
Code:
#!/bin/bash

while true
do
  tail -f infile &
  pid=$!
  sleep 1500
  kill -9 $pid >/dev/null 2>&1
done

--ahamed
# 4  
Old 03-10-2012
I don't understand what does he mean by tail for 15 mins.
# 5  
Old 03-10-2012
try with "watch" command.

Example:
watch -n 900 "tail filename"

Last edited by ungalnanban; 03-10-2012 at 06:38 AM.. Reason: example
# 6  
Old 03-10-2012
The "watch" command is specific to BSD, is that what your O/S is?
# 7  
Old 03-10-2012
If I look at the OP's requirement it should be more like:

Code:
while :
do
  tail -f file & pid=$!
  sleep 900
  kill $pid
  sleep 600
done

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Grep last 5 mins from logs

Hi, system date format Thu Jun 13 12:55:18 EDT 2019 My log date format 09.148.192.60 - - "GET /akamai/sureroute-test-object.html HTTP/1.1" 404 231 can someone please help me, how to get last 5mins of logs please ? I need the command Please wrap your samples/codes in CODE TAGS,... (3 Replies)
Discussion started by: scazed
3 Replies

2. Shell Programming and Scripting

Need logs 5 mins old

I need 5 mins old logs to be dumped into a a new file. The date formats in the two log files are Can you suggect for both formats ? bash-3.2$ uname -a SunOS myserver 5.10 Generic_150400-26 sun4v sparc sun4v ---------- Post updated 05-04-16 at 12:24 AM ---------- Previous update was... (2 Replies)
Discussion started by: mohtashims
2 Replies

3. Shell Programming and Scripting

How to check if there is a file in the last 10 mins?

I have a script that runs every hour from the crontab (see the settings of the crontab below) (15 mins past the hour) 15 * * * * /home/usr/usr1/ProvAll This script saves two files in the following format now=`/bin/date '+%Y%m%d.%H%M%S'` file1.$now (for example) file1.20140722.031502... (12 Replies)
Discussion started by: knijjar
12 Replies

4. UNIX for Dummies Questions & Answers

CPU usage for 5 mins

Hi Experts, Please help me in find the right way to create a script for the below task. Task - I need to create a alert script for CPU usage and I only need to alert when there is a process hold the CPU high for more than 5 mins. Initially five mins one use the ps command five mins... (5 Replies)
Discussion started by: senthil.ak
5 Replies

5. Shell Programming and Scripting

Joining multiple files tail on tail

I have 250 files that have 16 columns each - all numbered as follows stat.1000, stat.1001, stat.1002, stat.1003....stat.1250. I would like to join all 250 of them together tail by tail as follows. For example stat.1000 a b c d e f stat.1001 g h i j k l So that my output... (2 Replies)
Discussion started by: kayak
2 Replies

6. Shell Programming and Scripting

invoke this command after every 10 mins

Hi, I have an command which find the files modified within last 3 days and then after selecting the files from the location it make the tar format and send it to the specified destination ...now I want that this task to be automative ..that is it should happen after every 5 minutes ..plz guide me... (5 Replies)
Discussion started by: Neera
5 Replies

7. UNIX for Advanced & Expert Users

How to test the script for every 30 mins

Test job to make sure pwctest service is up Test script which can run every 30 mins to make sure pwctest is available. a) If Error , script should send email to Tech. plz help me out for this script i'm waiting for reply.....plz (7 Replies)
Discussion started by: ksrivani
7 Replies

8. UNIX for Advanced & Expert Users

getting time mins ago

Hi I trying to get 5 mins ago time using below command echo `date +%R -d "1 min ago"` but this is giving only current time. Please help (6 Replies)
Discussion started by: cka
6 Replies

9. Shell Programming and Scripting

file old than 10 mins to alert

Hello We have to monitor a FTP utility where we have to monitor for checking presence of a file in directory With max time allowed for a file to stay in the directory on FTP client server as 10 mins. The only way we are going to be able to do what we are lookign for is to write a script to... (1 Reply)
Discussion started by: vivkas
1 Replies

10. UNIX for Dummies Questions & Answers

files created within last 10 mins

Any simple 1 liners to check a directory to see if a file was created within the last 10 mins? (5 Replies)
Discussion started by: frustrated1
5 Replies
Login or Register to Ask a Question