File existence error


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting File existence error
# 1  
Old 09-21-2011
File existence error

I'm trying to verify the existence of a file.

PHP Code:
cd /usr/local/bin
old_boing
=`grep -l $old_inst *`

new_boing=boing-$new_ver
print "NEW BOING $new_boing"
print "OLD BOING $old_boing"

if [[ -e $new_boing ]];then
        
print "There was no boing"
else
        print 
"boing exist"
fi 
I know there is no file in the directory, but it keeps telling me that the file exist.
What I'm doing wrong?

Thanks
# 2  
Old 09-21-2011
What is $old_inst?

What is that grep supposed to be doing? It finds files containing whatever $old_inst is, not files named it.

What does it print, exactly, when you run it?
# 3  
Old 09-21-2011
I don't know, and without reading too much into this weird boingy stuff, -e is true if the file exists, so why do you have:

Code:
if [[ -e $new_boing ]];then
        print "There was no boing"

# 4  
Old 09-21-2011
Ahhhh, you are right. I put the prints backward
Its should be

PHP Code:
if [[ -e $new_boing ]];then
        
print "boing exist"
else
        print 
"There was no boing"
fi 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

File existence

Hope someone can help me on this In a directory ,files are dynamically generated.I need a script to do the following if files are not received for more than 2 hours or if the received file is empty then do something How can I put that in a script.Thank you eg. in cd /dir_name the... (13 Replies)
Discussion started by: haadiya
13 Replies

2. Shell Programming and Scripting

File existence check

hi i wanted to check if the file exist or not(multiple files) DIRE=/home/V478 if ; then echo "file present" else echo "file not present" fi But i am getting the error as : [: unexpected operator/operand (3 Replies)
Discussion started by: ATWC
3 Replies

3. Shell Programming and Scripting

Checking for the file existence

Hi, I have written a script to validate the data file by referreing to the configurtion file. And moving the validated good records and bad records into HDFS. Suppose after 15 mins if i receive one more data fie,then after validation the good and bad records shold be stored in hadoop with the... (8 Replies)
Discussion started by: shree11
8 Replies

4. Shell Programming and Scripting

Find existence of file?

Hi Guys, I am using c shell script to find whether the file exist or not. I am using if statment to achieve this. I would like to tell the user which file doesn't exist and for this I would need your assistance. Example: if (! -e filename1.txt || ! -e filename2.txt || ! -e filename3.txt)... (2 Replies)
Discussion started by: dixits
2 Replies

5. 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

6. Shell Programming and Scripting

File existence

Hi I'm using the below command in shell script to check for file exists in the path if ..... fi path and test are variables path and the file exists but the commands inside if condition is executed (! operator used) Is the above way of checking for file existence is correct? ... (4 Replies)
Discussion started by: vinoth_kumar
4 Replies

7. Shell Programming and Scripting

Parse file from remote server to calculate count of string existence in that file

Hi I need to parse the file of same name which exist on different servers and calculate the count of string existed in both files. Say a file abc.log exist on 2 servers. I want to search for string "test" on both files and calculate the total count of search string's existence. For... (6 Replies)
Discussion started by: poweroflinux
6 Replies

8. Shell Programming and Scripting

File existence using ls

Hi I want to check a particular file is available or not. But i know only the pattern of that file sat AB1234*.txt.I need the latest file name and it ll be used in the script. How can i do this using ls -ltr command. Thanks, LathishSundar V (2 Replies)
Discussion started by: lathish
2 Replies

9. Shell Programming and Scripting

File existence

Hey all, I have total new with shell scripting so I don't know if what I need to do even possible, here it is...for a duration of time (say...1 hour) I need to check for the existence of a particular file, if it exists then I will invoke a java program or I will continue to check until a)... (2 Replies)
Discussion started by: mpang_
2 Replies

10. UNIX for Dummies Questions & Answers

Loop for file existence

I wasn't sure if I should post it here of in the Shell Script category, but I figured it was definitely a newbie question. I'm trying to write a script that will check for the existence of a specific file (or for any files within the directory) and then take specific actions. I've removed all... (2 Replies)
Discussion started by: bd_joy
2 Replies
Login or Register to Ask a Question