Stable Time script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Stable Time script
# 1  
Old 11-09-2010
Stable Time script

Hi
I have got a simple script that moves files from one folder to another, but would like to add some extra functions to the script.
Firstly i would like to add a file stable check. We can copy large files to the source directory and i want to ensure the copy has finished before its moved to backup directory.
Next i would like to add either ssh or ftp so the backup directory could be on a remote server

Code:
#!/bin/sh

SOURCE_DIR=/prod2/SHARED/Enfocus_Pitstop/Twist_Certified_Magazine/Passed/
BACKUP_DIR=/symlnks/io/jobs/workflows/TAG-466/Certified_Passed_Error/

cd $SOURCE_DIR
mv -f * $BACKUP_DIR/

thanks in advance
Treds

Last edited by jim mcnamara; 11-09-2010 at 09:06 AM.. Reason: code tags
# 2  
Old 11-09-2010
One way is to use semaphore files, i.e. empty files with the same name as the file they accompany plus an extension. You could write a semaphore file first, then copy the file and remove the semaphore file after the copying is done.
# 3  
Old 11-16-2010
HTML Code:
I am affraid thats a bit over my head not really a script person
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Capture run time of python script executed inside shell script

I have bash shell script which is internally calling python script.I would like to know how long python is taking to execute.I am not allowed to do changes in python script.Please note i need to know execution time of python script which is getting executed inside shell .I need to store execution... (2 Replies)
Discussion started by: Adfire
2 Replies

2. Shell Programming and Scripting

Need bash script to ping the servers and rename the output file each time the script is ran

HI, I have a file serverlist in that all host names are placed. i have written a small script #./testping #! /bin/bash for i in `cat serverlist` do ping $i >> output.txt done so now it creates a file output.txt till here fine.. now each time i run this script the output file... (4 Replies)
Discussion started by: madhudeva
4 Replies

3. Shell Programming and Scripting

Ftp script hangs for first time,but works every second time

Hi I have an ftp script which works fine when i execute through a test scheduler(UC4), but when i run it through the prod scheduler(UC4), it hungs indefinetely, when we cancel the job and re-run it it works perfectly fine. here is the code,, any idea why this is happening ???? ... (1 Reply)
Discussion started by: selvankj
1 Replies

4. Shell Programming and Scripting

what would a script include to find CPU's %system time high and user time high?

Hi , I am trying to :wall: my head while scripting ..I am really new to this stuff , never did it before :( . how to find cpu's system high time and user time high in a script?? thanks , help would be appreciated ! :) (9 Replies)
Discussion started by: sushwey
9 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

need inputs on how i can change my script to reduce amount of time the script takes

HI , I have a list1 which consists of data that i have to search and a list2 which has the files that need to be searched .So basically i am using list1 on list2 to see if list1 data is present if found replace it .I have written the code using foreach loop for each list .This is taking the... (1 Reply)
Discussion started by: madhul2002
1 Replies
Login or Register to Ask a Question