Checking whether the file exists under a directory and doing a diff


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Checking whether the file exists under a directory and doing a diff
# 1  
Old 10-20-2011
Checking whether the file exists under a directory and doing a diff

Hi Everyone,

I am writing a shell script for the below needs and would like your suggestions and advices.

I have a lot of scripting files(Shell Scripts) under the directory:
/home/risk_dev/dev

I have another directory which has a lot of shell scripts under the directory:
/home/risk_dev/uat

Now, I am looking for the below things:

1) What are all the files that exists under the directory dev but not uat.
2) what are all the files (file names) that exists under the directory uat but not dev.
3) what are the files that are not matching.

For Example:
I thought To get the file list that are not matching is to do a diff -b and then get the file name if its not matching.

Could someone please share their thoughts which could be more simpler to find whether the file exists and the diff.

I would really appreciate your time and your thoughts.
# 2  
Old 10-20-2011
In each dir do an "ls -1" to give you a single column of files. Output each to a new file. Then use comm to find the common and distinct files in each.

Code:
dev$ ls -1 >/tmp/dev.ls
dev$ cd ../uat
uat$ ls -1 >/tmp/uat.ls ;
cd /tmp
tmp$ comm dev.ls uat.ls

The man page on comm will tell you how to interpret the output and how to run it to get the results you want.

Last edited by otheus; 10-20-2011 at 11:50 PM..
# 3  
Old 10-20-2011
Code:
diff -q /home/risk_dev/dev /home/risk_dev/uat

If you need to compare the contents of subdirectories as well, you can recurse with -r.

Regards,
Alister

Last edited by alister; 10-20-2011 at 07:54 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

For loop without checking file exists

In several scripts that process files matched by name pattern I needed to add a check for file existence. Just to illustrate let's say I need to process all N??? files: /tmp$ touch N100 N101 /tmp$ l ?10 -rw-rw-r-- 1 moss group 0 Apr 19 11:22 N100 -rw-rw-r-- 1 moss group ... (10 Replies)
Discussion started by: migurus
10 Replies

2. Shell Programming and Scripting

Problem with ssh and checking if file exists

Hi All, I am facing a problem while checking for existence of file over ssh ! Basically, i want to ssh and check if file exists.. If file exists return 1. If file does not exits return 0 (or any value) I am using the below code file_avail=`ssh username@host "if ]; then exit 1;... (10 Replies)
Discussion started by: galaxy_rocky
10 Replies

3. Shell Programming and Scripting

Checking if file exists and unzipping

Hey, I am new to scripting and was wondering what is wrong with this if statement. I want to check if file exists and the if it does to unzip it. I program it as follows if ; then gunzip *_filename.gz fi Thanks in advance! Please use code tags next time for your code and data. (10 Replies)
Discussion started by: mostarac2487
10 Replies

4. Shell Programming and Scripting

How to check if a file exists in a directory?

I want to perform SQL *Loader operation only if a file named "load.txt" exists in a directory "/home/loc/etc". Please help how to check this with a if condition. (8 Replies)
Discussion started by: vel4ever
8 Replies

5. Shell Programming and Scripting

what is the difference between -f and -e, when checking for file exists

Hi All, what is the difference between -f and -e. Regards, ch33ry (1 Reply)
Discussion started by: ch33ry
1 Replies

6. Shell Programming and Scripting

Checking if file exists

How can I check if a file exists in csh? I know there is "-e $file" but do not know exactly how to use it. I have tried the below but I'm getting "Bad : modifier in $ ( )." foreach f ($AfullnameLst) if (-e $f) then echo "$f: file exists" endif end (6 Replies)
Discussion started by: kristinu
6 Replies

7. Shell Programming and Scripting

check if directory and file exists

cp $PATHLOGS/$DATE/*.* $TMP/logs_tmp/ cp $PATHLOGS/$DATE1/*.* $TMP/logs_tmp/ Before copying the files I have to check if the directory $DATE1 and $DATE2 exists. If directory exists then, check if the folder contains some files. if the file exists then, check if the file size is greater... (3 Replies)
Discussion started by: sandy1028
3 Replies

8. Shell Programming and Scripting

Checking if file exists using a NOT operator and shell variable

Hi, I'm new to UNIX, at least shell programming and am having trouble figuring out a problem i'm having. In one section in my nested if statement, i want the program to test if the file does not exist, based on an argument supplied at the command line by the user. What i have is elif ; then... (3 Replies)
Discussion started by: rowlf
3 Replies

9. Shell Programming and Scripting

Checking if a file exists

How can I check if a file exists in shell script. Basically, I want to check if a file Test_msgs has been created today. If it has been then append data to it. Otherwise, create it. I have written the following but it does not work. todaysdate=$(date +%d%m%Y) timenow=$(date +%H%M%S)... (4 Replies)
Discussion started by: gugs
4 Replies

10. Shell Programming and Scripting

Checking the file if it exists

Hi This will be useful who is looking for checking the files in a directory #chmod 777 /cronacle/tools/teradata/opo/bin/file_check.sh SUBJECT=`echo "File Not Found"` SUBJECT1=`echo "File Found"` #RECIPIENT=Madhu.Reddy@ge.com cd /cronacle/tools/teradata/opo/bin file_list=attach.sh if ... (3 Replies)
Discussion started by: ksmbabu
3 Replies
Login or Register to Ask a Question