ISSUE IN main script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting ISSUE IN main script
# 1  
Old 11-08-2011
ISSUE IN main script

Hi ,

I have a script that will move files which have a datetime >= currentdate-N from a source to destination folder.the input parameter are 1) Configurable N days value,2) source folderand 3) destination folder and finally the output would be The old files are moved...I have developed the configuration file and the main script file and tha main script file is running successfully ... beloe are the code of both the files..


the structure of the properties file (archievefilemovement.config) is ....

Code:
###################################################################

#Properties file for moving files as per configurable Days value

###################################################################

#This is the source directoy from where the files will be picked up
SrcDirectory=/home/p2000/sxs137/ODS_Project/temp


#This directory path should end with a slash(/)
DestDirectory=/home/p2000/sxs137/ODS_Project/test/


#Configurable N days value is assumed here of 3 days
Days=3

the structure of the main file is ....

Code:
#!/bin/sh 

. /home/p2000/sxs137/scripts/archievefilemovement.config

awk -F = '/Days=/{days=$2}/SrcDirectory=/{src=$2}/DestDirectory=/{dest=$2}END{print days, src, dest}' \
archievefilemovement.config |while read DAYS INDIR OUTDIR

do  

  find $INDIR -type f -mtime -$DAYS -exec mv {} $OUTDIR \;

Now want files of particular pattern should only be picked up, let say only text files to be picked up, so i would add a entry of the source file patterns in the properties file (archievefilemovement.config) ...



Code:
###################################################################

#Properties file for moving files as per configurable Days value

###################################################################

#This is the source directoy from where the files will be picked up
SrcDirectory=/home/p2000/sxs137/ODS_Project/temp


#This directory path should end with a slash(/)
DestDirectory=/home/p2000/sxs137/ODS_Project/test/


#Configurable N days value is assumed here of 10 days
Days=3

#the pattern of the files
SourcefilePattern=*.txt

Now please guide me what changes would be there now in my main script file as I have added an extra input of source file pattern...tHANKS IN ADVANCE

---------- Post updated at 06:47 AM ---------- Previous update was at 04:29 AM ----------

Hi Guys,
please guide me on this issues...!!!Smilie

Last edited by vbe; 11-08-2011 at 10:19 AM..
# 2  
Old 11-08-2011
What is that Red stuff?
Your scripts are not complete so it is difficult to understand your issue (do you have one?)
If there is an issue please submit between code tags the output...

Otherwise if you are just willing to add new functions to your script try to be more clear
Is it adding a new argument to your search? (find ...) in which case look at the man pages of find how to add options ( you will need I suppose -name "*.txt " ), or was it something else?

Last edited by vbe; 11-08-2011 at 11:18 AM.. Reason: typos
# 3  
Old 11-08-2011
I wonder if its not a rewriting of conf file and script:
If you give a file pattern to look for, then it will impact the source directory which is of no use anymore since the files will be:
Code:
SrcDirectory=/home/p2000/sxs137/ODS_Project/temp
SourcefilePattern=*.txt
FILE2MOVE=$rcDirectory/$SourcefilePattern

And so your can rethink your find command...
# 4  
Old 11-08-2011
Quote:
Originally Posted by vbe
I wonder if its not a rewriting of conf file and script:
If you give a file pattern to look for, then it will impact the source directory which is of no use anymore since the files will be:
Code:
SrcDirectory=/home/p2000/sxs137/ODS_Project/temp
SourcefilePattern=*.txt
FILE2MOVE=$rcDirectory/$SourcefilePattern

And so your can rethink your find command...

I have a script that read some values from the properties file and move files from source folder to destination folder based upon the modification time of the files created (N configurable days) ...

below is the structure of properties file



Code:
###################################################################

#Properties file for moving files as per configurable Days value(modification time created)

###################################################################

#This is the source directoy from where the files will be picked up
SrcDirectory=/home/p2000/sxs137/ODS_Project/temp


#This directory path should end with a slash(/)
DestDirectory=/home/p2000/sxs137/ODS_Project/test/


#Configurable N days value is assumed here of 3 days
Days=3

below is the code of the main script file



Code:
#!/bin/sh 

. /home/p2000/sxs137/scripts/archievefilemovement.config

awk -F = '/Days=/{days=$2}/SrcDirectory=/{src=$2}/DestDirectory=/{dest=$2}END{print days, src, dest}' \
archievefilemovement.config |while read DAYS INDIR OUTDIR

do  

  find $INDIR -type f -mtime -$DAYS -exec mv {} $OUTDIR \;

Now I want to add extra functionality in the above properties file that it should pick the text files from the source folders that is the main properties file would be now

Code:
###################################################################
  
  #Properties file for moving files as per configurable Days value
  
  ###################################################################
  
  #This is the source directoy from where the files will be picked up
  SrcDirectory=/home/p2000/sxs137/ODS_Project/temp
  
  
  #This directory path should end with a slash(/)
  DestDirectory=/home/p2000/sxs137/ODS_Project/test/
  
  
  #Configurable N days value is assumed here of 3 days
  Days=3

  #the pattern of the files
   SourcefilePattern=*.txt

what changes would now in my main script file ...please guide me ..!!
# 5  
Old 11-08-2011
Let's make sure when we "guide" you, YOU understand the 'guidance'.
In your config file, change this:
Code:

SourcefilePattern='*.txt'

Before proceeding to the next change, please explain WHY this change is needed.

Note: I'd ask all 'good Samaritans' to wait for the OP's explanation before proceeding further!
This User Gave Thanks to vgersh99 For This Post:
# 6  
Old 11-08-2011
Quote:
Originally Posted by vgersh99
Let's make sure when we "guide" you, YOU understand the 'guidance'.
In your config file, change this:
Code:

SourcefilePattern='*.txt'

Before proceeding to the next change, please explain WHY this change is needed.

Note: I'd ask all 'good Samaritans' to wait for the OP's explanation before proceeding further!

Hi vgersh,

Thanx a lot for the guidance,I am sorry , please explain why to write that pattern inside the single quotes...!!
# 7  
Old 11-08-2011
Quote:
Originally Posted by nks342
Hi vgersh,

Thanx a lot for the guidance,I am sorry , please explain why to write that pattern inside the single quotes...!!
There's nothing to be sorry about - all you need to think/know is how your script is implemented and why. Doing so will make you more knowledgeable and efficient solving your own issues.
Please think of how your 'main' script "sources" your config files - this should be enough of a hint for you.
Spend some time and effort on that first...
We're willing to help only the willing ones.
Good luck!
This User Gave Thanks to vgersh99 For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell script to calculate the max cpu usage from the main script

Hi All, I have a script which does report the cpu usuage, there are few output parameter/fields displayed from the script. My problem is I have monitor the output and decide which cpu number (column 2) has maximum value (column 6). Since the output is displayed/updated every seconds, it's very... (1 Reply)
Discussion started by: Optimus81
1 Replies

2. Shell Programming and Scripting

required help on main ftp script

Hi , I am new to unix , I was planning to write a ftp script that will transfer the files to the ftp server at the specified location mention in the properties file.... the structure of the properties file is configuration for ftp ********************* #remote url of the machine ... (1 Reply)
Discussion started by: rahul2751
1 Replies

3. Shell Programming and Scripting

configuration for ftp script in main script

Hi, I am new to shell scripting,and i was planning to write a script that will FTP files to destination folder. I was planning that All configuration should be done through a properties files. and finally the output should be Files are transferred I have developed a properties file named... (4 Replies)
Discussion started by: rahul125
4 Replies

4. Shell Programming and Scripting

writing the main script file

Hi, I am new to shell scripting,and i was planning to write a script that will move files which have a datetime >= currentdate-N from a source to destination folder. All configuration should be done through a properties files. Here the value of N should be taken as 10 days(modification... (6 Replies)
Discussion started by: rahul125
6 Replies

5. UNIX for Advanced & Expert Users

Pass parameter to the main script from wrapper script

Hi, I am writing a wrapper script(wrap_script.sh) to one of the main scripts (main_script.sh) The main script is executed as following: ./main_script.sh <LIST> <STARTDATE> <ENDDATE> looks for a parameter which is a LIST(consists of different list names that need to be processed), START/END... (0 Replies)
Discussion started by: stunnerz_84
0 Replies

6. Shell Programming and Scripting

AWK variable in Main script??? solved

Using an awk script , i want to store the value of a variable in the main script. currently sum is getting reset to blank in the main script. How to modify the below code to get the value of esum in the variable sum of the main script??? sum=`echo "$row" | awk -F"" '{$esum=$5}'` ... (0 Replies)
Discussion started by: skyineyes
0 Replies

7. UNIX for Dummies Questions & Answers

How to pass two or more parameters to the main in shell script

Hey Guys from the below script what I understood is we are sending the the first parameter as input to the main (){} file main > $LOGFILE 2>&1 but can we send two or three parameter as input to this main file as main > $LOGFILE 2>&1 2>&2 like this Can any one plz help I need to writ a... (0 Replies)
Discussion started by: pinky
0 Replies

8. UNIX for Dummies Questions & Answers

Problem starting a script from a 'main'-script

Please Help! :o I have a main script (ksh) where another script is called (convert_picture). Normally this works ok, but since some changes has been made on the unix-server (I dont know what :( ) suddenly it doesnt work anymore: i get an error message: ksh: convert_picture not found. I am... (3 Replies)
Discussion started by: Rakker
3 Replies
Login or Register to Ask a Question