Sponsored Content
Full Discussion: Real time processing
Top Forums UNIX for Dummies Questions & Answers Real time processing Post 302604593 by Corona688 on Monday 5th of March 2012 11:41:17 AM
Old 03-05-2012
I presume you mean, whenever sam1 finishes, read from it? Will sam2 exist before sam1 finishes? If not, you can use that to detect when the files finish:

Code:
FILE=1
NEXTFILE=`expr $FILE + 1`

while true
do
        # If the next file doesn't exist, sleep a bit, and go back to top of loop
        if [ ! -e sam"$NEXTFILE" ]
        then
                sleep 1
                continue
        fi

        # Print message ( to stderr, so it doesn't end up in outputfile )
        echo "Reading from sam$FILE" >&2
        # Read from current file
        cat sam"$FILE"
        # Set up for next file
        FILE="$NEXTFILE"
        NEXTFILE=`expr $FILE + 1`
# All output gets written to outputfile
done > outputfile

Of course, the smart thing to do would be to not split it in the first place, and use the output direct...

Last edited by Corona688; 03-05-2012 at 12:46 PM..
 

6 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

EPOCH to real time?

hi all :confused: i am wondering if there is a way to convert from EPOCH time to the standard tim, may be using a script or some thing else??????? thanks............................ (5 Replies)
Discussion started by: TheEngineer
5 Replies

2. Virtualization and Cloud Computing

No bottlenecks in Complex Event Processing for Real-time BI

vincent 08-18-2008 04:54 PM A few BI-related posts show how CEP and CEP-related thinking is starting to trickle into conventional thinking on Business Intelligence. First off, Intelligent Enterprise reports on some solutions to the problems of using data warehouses for real-time BI. Note... (0 Replies)
Discussion started by: Linux Bot
0 Replies

3. Solaris

Real time problems

Hi friends, I am new to solaris and looking for a job, when ever i attend interview i get most of the questions on real time problems, every one sak me the same questions what are the problems you face daily.. and what are the types? i know few like, disk extension,swap memory increasing,... (2 Replies)
Discussion started by: kurva
2 Replies

4. Programming

problem with real-time

hello every1, i'm very hope so anyone here have experience with lib rt like aio linux based. In first I've a problem with receiving data from aio_buf, i.e. I have received it, but if the next data size less then pervious I've got a noise from a socket. I've tried to fix it by different ways, but... (0 Replies)
Discussion started by: quant
0 Replies

5. Shell Programming and Scripting

Shell script to convert epoch time to real time

Dear experts, I have an epoch time input file such as : - 1302451209564 1302483698948 1302485231072 1302490805383 1302519244700 1302492787481 1302505299145 1302506557022 1302532112140 1302501033105 1302511536485 1302512669550 I need the epoch time above to be converted into real... (4 Replies)
Discussion started by: aismann
4 Replies

6. Shell Programming and Scripting

Converting real time to epoch time

# date +%s -d "Mon Feb 11 02:26:04" 1360567564 # perl -e 'print scalar localtime(1360567564), "\n";' Mon Feb 11 02:26:04 2013 the epoch conversion is working fine. but one of my application needs 13 digit epoch time as input 1359453135154 rather than 10 digit epoch time 1360567564... (3 Replies)
Discussion started by: vivek d r
3 Replies
APPLE_DUMP(1)							   Netatalk 2.2 						     APPLE_DUMP(1)

NAME
apple_dump - Dump AppleSingle/AppleDouble format file SYNOPSIS
apple_dump [-a] FILE | DIR apple_dump -f FILE apple_dump -d FILE apple_dump -h | -help | --help apple_dump -v | -version | --version DESCRIPTION
apple_dump dump AppleSingle/AppleDouble format file. OPTIONS
-a FILE|DIR This is default. Dump a AppleSingle/AppleDouble file for FILE or DIR automatically. Extrapolate FinderInfo type from absolute path. If FILE is not AppleSingle/AppleDouble format, look for .AppleDouble/FILE and ._FILE. If DIR, look for DIR/.AppleDouble/.Parent and ._DIR. -f FILE Dump FILE. Assume FinderInfo to be FileInfo. -d FILE Dump FILE. Assume FinderInfo to be DirInfo. -h, -help, --help Display the help and exit -v, -version, --version Show version and exit NOTE
There is no way to detect whether FinderInfo is FileInfo or DirInfo. By default, apple_dump examins whether file or directory, a parent directory is .AppleDouble, filename is ._*, filename is .Parent, and so on. If setting option -f or -d, assume FinderInfo and doesn't look for another file. SEE ALSO
ad(1) Netatalk 2.2 02 Sep 2011 APPLE_DUMP(1)
All times are GMT -4. The time now is 12:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy