Replied new files


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Replied new files
# 1  
Old 09-14-2009
Replied new files

We need to create a process that run continues and whenever a file is placed in a specific directory, the process detected this new file and replicated in another directory.
How can we implement a process that allows automatic replies to the new files?


Regards
# 2  
Old 09-14-2009
take a look at the rsync utility.
# 3  
Old 09-14-2009
Option 1: Use rsync from one directory to the other
Option 2: Use File::Monitor
Option 3: If you're on Linux, code something up in C using inotify
Option 4: (might miss files)
Code:
cd /incoming
while true
do
    filename=$( basename $( ls -1t ) )
    if [ ! -e /replicate/${filename} ]
    then
        cp /incoming/${filename} /replicate/.
    fi
    sleep 30
done

# 4  
Old 09-14-2009
Tks for your awnser.

But it occurred one error with basename, it returns the fowlling error :

Usage: basename string [suffix]

Any ideia ?
# 5  
Old 09-14-2009
Quote:
Originally Posted by RMSoares
But it occurred one error with basename, it returns the fowlling error :

Usage: basename string [suffix]
Obviously 'ls -1t' in 'filename=$( basename $( ls -1t ) )' returns more than one file name, a thing which basename can't handle with. Try:
Code:
cd /incoming
while filename in "$(ls -1t)"
do
     if [ ! -e "/replicate/${filename}" ]
...

P.S. I didn't use basename at all, since /incoming may have subdirectories with files, which also should be taken into account while generating replicates
# 6  
Old 09-15-2009
Wich values you will pass to filename ?

while filename in "$(ls -1t)"
# 7  
Old 09-15-2009
I've made an error no double quotes are needed around $(ls -t)

To show, what values the variable filename gets, here is my example:
>cd sample_dir/

>ls -t
file3
file2
file1

> for filename in $(ls -t) ; do echo "filename is $filename" ; done
filename is file3
filename is file2
filename is file1
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Automate splitting of files , scp files as each split completes and combine files on target server

i use the split command to split a one terabyte backup file into 10 chunks of 100 GB each. The files are split one after the other. While the files is being split, I will like to scp the files one after the other as soon as the previous one completes, from server A to Server B. Then on server B ,... (2 Replies)
Discussion started by: malaika
2 Replies

2. Shell Programming and Scripting

Shell script replied multiple process for file has successfully created

Hi All, I have written the following code do FILE_NO=$(echo $LINE|awk -F"|" '{print $1}'|tr "'" '+'|sed 's/\(.*\)\(++\)\(.*\)\(++\)/\3/') INST_NO=$(echo $LINE|awk -F"|" '{print $2}'|tr "'" '+'|sed 's/\(.*\)\(++\)\(.*\)\(++\)/\3/') if ] then ... (3 Replies)
Discussion started by: yogendra.barode
3 Replies

3. Shell Programming and Scripting

Append string to all the files inside a directory excluding subdirectories and .zip files

Hii, Could someone help me to append string to the starting of all the filenames inside a directory but it should exclude .zip files and subdirectories. Eg. file1: test1.log file2: test2.log file3 test.zip After running the script file1: string_test1.log file2: string_test2.log file3:... (4 Replies)
Discussion started by: Ravi Kishore
4 Replies

4. Shell Programming and Scripting

How to create zip/gz/tar files for if the files are older than particular days in UNIX or Linux?

I need a script file for backup (zip or tar or gz) of old log files in our unix server (causing the space problem). Could you please help me to create the zip or gz files for each log files in current directory and sub-directories also? I found one command which is to create gz file for the... (4 Replies)
Discussion started by: Mallikgm
4 Replies

5. Shell Programming and Scripting

need a shell script to extract the files from source file and check whether those files existonserve

Hi, I am new to shell scripting.Please help me on this.I am using solaris 10 OS and shell i am using is # echo $0 -sh My requirement is i have source file say makefile.I need to extract files with extensions (.c |.cxx |.h |.hxx |.sc) from the makefile.after doing so i need to check whether... (13 Replies)
Discussion started by: muraliinfy04
13 Replies

6. UNIX for Dummies Questions & Answers

write a program in c in unix that display the files(includ sub-direc and files within) in a sorted

the sorting is based on name of file, file size modification time stamps o f file it should dislay the output in the following format "." and ".." enteries should be ignored please give some idea how to do it (1 Reply)
Discussion started by: pappu kumar jha
1 Replies

7. Shell Programming and Scripting

How to extract data from indexed files (ISAM files) maintained in an unix server.

Hi, Could someone please assist on a quick way of How to extract data from indexed files (ISAM files) maintained in an UNIX(AIX) server.The file data needs to be extracted in flat text file or CSV or excel format . Usually we have programs in microfocus COBOL to extract data, but would like... (2 Replies)
Discussion started by: devina
2 Replies

8. Shell Programming and Scripting

How to retrieve all the linked script files/ctl files/sql files?

Hi I am going to migrate our datawarehouse system from HP Tru 64 Unix to the Red Hat Linux. Inside the box, it is running around 40 cron jobs; inside each cron job, it is calling other shell script files, and the shell script files may again call other shell script files or ctl files(for... (1 Reply)
Discussion started by: franksubramania
1 Replies

9. Post Here to Contact Site Administrators and Moderators

Message Never got replied.

Hi, I had put up a post a couple of days back. I haven't got any replies yet. Now it's become old so the chances of it been seen by anybody is very less let alone answering it. Please tell me what I should do now? Should I create a new thread with the same contents again? Regd, M. (5 Replies)
Discussion started by: mahatma
5 Replies
Login or Register to Ask a Question