Comparing File Names


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Comparing File Names
# 1  
Old 02-14-2013
Oracle Searching for files starting with same names

Hi All ,

I am new to UNIX.
I have a requirement where user transfers 10-15 files into a directory "/upload".
File name will be like T1234_H and T1234_D or R1234_H and R1234_D .
The _H and _D files are associated to each other.They must always be together in the server.

Once the files are transferred I need to perform a check if the file T1234_H has it associated file T1234_D and then move these files to /process/Tfiles directory.
If the file T1234_H is only present in the directory "/upload" and there is no T1234_D file or vice versa the program shouldn't move the file to /upload/Tfiles path and it should throw me an error saying _D file is missing and do the same thing to R1234_H and R1234_D and move to directory /process/Rfiles.

You may think why can't you move the files T1234_H and T1234_D directly to /upload/Tfiles directory rather than doing all this.
But the requirement is to check the files with same name(first 5 chars) say T1234_H and T1234_D both are present in the /upload path and then move these to new path(/process/Tfiles ) based on the first letter of the file name "T" or "R" for processing data in the file.

Regards,
Ravi

Last edited by Raviteja_B; 02-14-2013 at 09:11 AM.. Reason: Change the Title for the post.
# 2  
Old 02-14-2013
Something like the following should work, note this is completely untested code...
Code:
#!/bin/bash
old_dir=$(pwd)
cd /upload
for format in R T ; do
   for file in $(ls ${format}*_H) ; do
        if [ -e ${file%_H}_D ] ; then # the complementary file exists
            mv $file ${file%_H}_D /process/${format}files
         else 
            echo $file encountered without complement
         fi
   done
done
cd $old_dir

# 3  
Old 02-14-2013
Hi Skrynesaver,
Thanks for your reply.
This is the current logic I am using to move the files starting with name "T" from one direcotry to the new direcotry.

In the for loop I need to perfoer a check so to ensure that T*_H and its associated T*_D files are present in the $v_dir_rec, if both files are there
then I need to move them to the new direcotry($v_dir_path).

Code:
echo 'Starting... '
if [ "$v_source" = "T" ]
then
  (ls -1 -t -r $v_source*_H ) >> $v_logfile_p
  (ls -1 -t -r $v_source*_D ) >> $v_logfile_p
fi
for v_filename in `cat $v_logfile_p`
echo 'move '$v_dir_rec'/'$v_filename ' '$v_dir_path
mv $v_dir_rec'/'$v_filename  $v_dir_path
done


Last edited by Corona688; 02-15-2013 at 12:03 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Comparing file names with different extensions

Hello, I need some help. I have files in one and the same directory, but with different extensions, like this: file1.IN file2.IN file3.IN file1.OUT file2.OUT Apparently some files with OUT extension can be missing. So I want to compare *.IN and *.OUT, ignoring the extension and get result... (3 Replies)
Discussion started by: apenkov
3 Replies

2. Shell Programming and Scripting

Exclude certain file names while selectingData files coming in different names in a file name called

Data files coming in different names in a file name called process.txt. 1. shipments_yyyymmdd.gz 2 Order_yyyymmdd.gz 3. Invoice_yyyymmdd.gz 4. globalorder_yyyymmdd.gz The process needs to discard all the below files and only process two of the 4 file names available ... (1 Reply)
Discussion started by: dsravanam
1 Replies

3. Shell Programming and Scripting

Comparing the pattern of the file names in 2 different directories

Hi, I have got a requirement for which i need your help. The following problem is required to get solved in PERL SCRIPT. Here is the requirement. There are 4 folders say SRC_DIR1, SRC_DIR2 and TGT_DIR_1,TGT_DIR_2 (Note: both path of SRC_DIR1 & SRC_DIR2 are different but both path of... (4 Replies)
Discussion started by: shadow_fawkes
4 Replies

4. Shell Programming and Scripting

**URGENT ** : Comparing the pattern of the file names in 2 different directories

Hi, I have got a requirement for which i need your help. The following problem is required to get solved in PERL SCRIPT. Here is the requirement. There are 4 folders say SRC_DIR1, SRC_DIR2 and TGT_DIR_1,TGT_DIR_2 (Note: both path of SRC_DIR1 & SRC_DIR2 are different but both path of... (1 Reply)
Discussion started by: shadow_fawkes
1 Replies

5. Shell Programming and Scripting

Grepping file names, comparing them to a directory of files, and moving them into a new directory

got it figured out :) (1 Reply)
Discussion started by: sHockz
1 Replies

6. Shell Programming and Scripting

Comparing files names in directory over two servers

Hi folks I need to write a shell script to check whether source and the destination has the same files. The source and destination are over two servers and connecting through ssh. It should even compare the date i.e, the complete file name, date stamp and size should match. Should list out all the... (3 Replies)
Discussion started by: Olivia
3 Replies

7. Shell Programming and Scripting

Searching for file names in a directory while ignoring certain file names

Sun Solaris Unix Question Haven't been able to find any solution for this situation. Let's just say the file names listed below exist in a directory. I want the find command to find all files in this directory but at the same time I want to eliminate certain file names or files with certain... (2 Replies)
Discussion started by: 2reperry
2 Replies

8. Shell Programming and Scripting

Comparing subdirectory names

I am trying to reformat data from one private directory and reformat it and move it to a public one, but i only want to get directories that have not already been moved to the public directory. Here's what i'm working with Dir1 contains folders for each named with timestamp 20090320081302... (2 Replies)
Discussion started by: dabombace
2 Replies

9. UNIX for Dummies Questions & Answers

Comparing file names to text document

Hi All, I'm really new to Unix scripts and commands but i think i'm eventually getting the hang of some of it. I have a task which is to create some kind of script which compares the file names in a directory, with the associated file name in a .txt file. We send out some data and Unix has a... (1 Reply)
Discussion started by: gman
1 Replies

10. Shell Programming and Scripting

Reading file names from a file and executing the relative file from shell script

Hi How can i dynamically read files names from a list file and execute them from a single shell script. Please help its urgent Thanks in Advance (4 Replies)
Discussion started by: anushilrai
4 Replies
Login or Register to Ask a Question