Script to check file exists


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script to check file exists
# 1  
Old 08-26-2011
Script to check file exists

Hi,

I am trying to write a script which checks if any file exists with "*.log" or "*.out" in Directory

below is the code
Code:
#------------------
path=/abd/xyz/
if [ -f "$path *.log -o *.out" ]; then
echo "Good"
else
echo "Failure"
fi
#--------------------------

its always going to else part and printing "Failure" even for TRUE condition.

Can anyone correct me where i am wrong.

Thanks in Advance.

Last edited by DukeNuke2; 08-26-2011 at 07:09 PM..
# 2  
Old 08-26-2011
Perhaps more difficult than it seems... if you want to be portable and without many issues. You see a wildcard is expanded by the shell.. this means that for sufficiently large matches, you'll blow up the command line (imagine *.txt matching thousands of files in the current directory and all of that fitting onto the command line).


So... it might be more portable to do an ls and filter for matches, quitting on first matched occurrence.

Code:
path=/abc/xyz/
files=`ls "${path}" | sed -n -e '/\.log$/ { p;q; }' -e '/\.txt$/ { p;q; }'`
if [ "$files" ]; then
  echo "Good"
else
  echo "Failure"
fi


Depending on shell and utilities available, there may be some less portable solutions for this. The one I show here should work just about anywhere there is a bourne shell compatible shell and some reasonable flavor of sed.
# 3  
Old 08-26-2011
Code:
set -vx
path=/a/i/logs
if [ -f "$path" "a.log" -o "b.log" ]; then
echo "Success"
else
echo "Failure"
fi

Hi....

How abt for the above lines i am searching for existence of a files.

What is difference between -a and -f.

Thanks for your response.

Last edited by Scott; 08-26-2011 at 07:12 PM.. Reason: It takes the same time to add [code] tags as it does [B] tags!!!
# 4  
Old 08-26-2011
Change
Code:
"if [ -f "$path" "a.log" -o "b.log" ]"

to
Code:
 if [ -f "$path" "a.log" -o -f "b.log" ]

# 5  
Old 08-26-2011
I've changed the code....but still its not working....

in the above i am checking for existence of two files with a.log and b.out in the directory logs...

its returing Failure if the files are not existing, its correct as expected
but when the file are existing its returing "Failure" again.

So i am bit confused.....
# 6  
Old 08-26-2011
oops sorry Smilie, try the below statement. I did not look close enough before posting.

Code:
if [ -f $path/*.log -o -f $path/*.out ]

This User Gave Thanks to dude2cool For This Post:
# 7  
Old 08-26-2011
Thanks a lot...it worked perfectly................
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell script which will check the target file and folder exists and copy it

Hi All, I am a beginner in this and trying to write a shell script in linux which will : 1. Ask for a file name and check if its exists. 2. If file exists only then it will ask for the new target folder, after entering target folder name it will check if it exists. 3. If target folder... (3 Replies)
Discussion started by: ashish_neekhra
3 Replies

2. Shell Programming and Scripting

Except script fails to check file exists or not in remote node

Dear members, The following expect script connects to remote node and check for the file "authorized_keys" in directory /root/.ssh in remote node. However the result is always found even if the file exist or doesn't exist. expect { "$fname" { send_user "found\n" } Any idea what is... (4 Replies)
Discussion started by: Sudhakar333
4 Replies

3. Shell Programming and Scripting

Check if file exists or not

Hi, I want to check if the file exists or not in the directory. i am trying below code but not working. File="/home/va59657/Account_20090213*.dat" echo "$File" if ]; then echo "file found" else echo "file not found" fi However i am getting file not found even if file exits as... (5 Replies)
Discussion started by: Vivekit82
5 Replies

4. Shell Programming and Scripting

File exists, but cannot be opened.How to check- whether it could be opened to read when it exists

Hi #Testing for file existence if ; then echo 'SCHOOL data is available for processing' else echo 'SCHOOL DATA IS NOT AVAILABLE FOR PROCESSING' : i wrote a script, where it begins by checking if file exists or not. If it exists, it truncates the database... (2 Replies)
Discussion started by: rxg
2 Replies

5. Shell Programming and Scripting

how to check to see if a file exists?

I want to write a script to see if various files exist. What I want to do is have the script search in various directories if a file exist, and if not, then output something like "/path/file does not exist". I don't actually know of how to check and see if a file exists or not. What I have in mind... (2 Replies)
Discussion started by: astropi
2 Replies

6. Shell Programming and Scripting

Script to check for the file existence, if file exists it should echo the no of modified days

Hi, I am looking for a shell script with the following. 1. It should check whether a particular file exists in a location #!/bin/sh if ; then echo "xxx.txt File Exists" else echo "File Not Found" fi 2. If file exists, it should check for the modified date and run a command... (2 Replies)
Discussion started by: karthikeyan_mac
2 Replies

7. Shell Programming and Scripting

Script to check if file exists

guys, I am trying to write a script that does the following: it looks for a file in a specific directory and if the file is not there (NOT), it emails me. I have tried the following but its not working. It simply hangs up. Please help. if then mail -s 'blah blah blah' my email... (4 Replies)
Discussion started by: basisvasis
4 Replies

8. Shell Programming and Scripting

Shell script to check if any file exists in 4 folders

Hi All, working on AIX 5.3. Requirement is: Shell script in ksh to check if any file exists in 4 folders as below: 1. /FILE/INB/INT1 2. /FILE/INB/INT2 3. /FILE/INB/INT3 4. /FILE/INB/INT4 Thanks a lot for your time! a1_win. (3 Replies)
Discussion started by: a1_win
3 Replies

9. Shell Programming and Scripting

Check File Exists and compare to previous day file script

We have data files that are ftp'd every morning to a SUN server. The file names are exactly the same except for that each has the date included in its name. I have to write script to do 2 things: STEP 1) Verify that the file arrived in morning. STEP 2) Compare the file size of the current... (3 Replies)
Discussion started by: rbknisely
3 Replies

10. Shell Programming and Scripting

unix script to check whether particular file exists and to find its size

I want to find the size of particular file exists in a particular directory and i wnt to zip it. In the below mentioned code it should check the MQ.log in the particular directory.Please correct my code so that it will check for particular MQ.log but i could not able to check whether the... (9 Replies)
Discussion started by: Balachandar
9 Replies
Login or Register to Ask a Question