I've used the following script to see if a file exists:

#!/bin/bash
FILE=$1

if [ -f $FILE ];
then
   echo "File $FILE exists."
else
   echo "File $FILE does not exist."
fi

What's the correct syntax to use if I only want to check if the file does not exist?

#!/bin/bash
FILE=$1

if [ $FILE does not exist ];
then
   echo "File $FILE does not exist."
fi
link|improve this question

feedback

9 Answers

up vote 188 down vote accepted

Bash has a "not" logical operator, which is the exclamation point (similar to many other languages). Try this:

if [ ! -f /tmp/foo.txt ];
then
    echo "File not found!"
fi
link|improve this answer
5  
Thanks. I hate looking stupid like this, but every example I found online was the one that I gave in the question. :) – Bill the Lizard Mar 12 '09 at 15:04
58  
The only stupid question is an unasked one. ;) – John Feminella Mar 21 '09 at 19:06
3  
@John: What color is the australian dinosaur in your house? - if that is not a stupid question, I give up. – Blub Jul 27 '10 at 15:52
13  
More succinctly: [ ! -f /tmp/foo.txt ] && echo "File not found!" – DavidWinterbottom Sep 29 '10 at 12:09
4  
@Blub, my australian dinosaur is kind of mauve-y pink. – Paul Tomblin Dec 14 '10 at 19:44
show 5 more comments
feedback

You can negate an expression with "!":

#!/bin/bash
FILE=$1

if [ ! -f $FILE ]
then
    echo "File $FILE does not exists"
fi

The relevant manpage is "man test".

link|improve this answer
10  
Thanks for the relevant man page. – Bill the Lizard Mar 12 '09 at 14:57
feedback
if [[ ! -a $FILE ]]; then
    echo "$FILE does not exist!"
fi

Also, it's possible that the file is a broken symbolic link. If you want to catch that you should:

if [[ ! -a $FILE ]]; then
    if [[ -L $FILE ]]; then
        echo "$FILE is a broken symlink!"
    else
        echo "$FILE does not exist!"
    fi
fi
link|improve this answer
May I ask why the two "["s in the test? (eg [[ ! -a $FILE ]]). I tried all the options mentioned on a solaris box and only that one worked, so grateful, but why? – dimitris mistriotis Apr 20 '11 at 8:35
2  
Double brackets are a "modern" extension; eg they won't do word splitting (such as for filenames with spaces) and still work for empty strings: mywiki.wooledge.org/BashFAQ/031 – bw1024 Feb 14 at 23:40
feedback

I've found this list of bash conditional statements very useful.

link|improve this answer
Thanks, bookmarked. :) – Bill the Lizard Mar 12 '09 at 15:01
feedback

If you type "man test" it will show you all the syntax for the "[ ]" (test) in bash.

link|improve this answer
2  
Actually, if you want to see bash's builtin test construct, you should use 'help test' – guns Mar 12 '09 at 14:56
feedback

It's worth mentioning that if you need to execute a single command you can abbreviate

if [ ! -f $file ]; do echo $file;fi

to

test -f $file || echo $file
link|improve this answer
feedback

You should be careful about running test for unquoted variable, because it might produce unexpected results:

$ [ -f ]
$ echo $?
0
$ [ -f "" ]
$ echo $?
1

The recommendation is usually to have the tested variable surrounded by double quotation marks:

#!/bin/bash
FILE=$1

if [ ! -f "$FILE" ];
then
   echo "File $FILE does not exist."
fi
link|improve this answer
feedback

Keep in mind, I'm only considering Bash. This is how I prefer to do a one liner, I actually use this syntax even for a couple commands.

# [ /$DIR/$FILE ] || echo "$FILE NOT FOUND"

# [ /$DIR/$FILE ] && echo "$FILE FOUND"

For a couple commands, like I would do in a script.

#  [ /$DIR/$FILE ] || { echo "$FILE NOT FOUND" ; exit 1 ;}

Once I started doing this, rarely use the fully typed syntax!!

link|improve this answer
feedback

you can use -z , eg

if [ -z `which grep` ] ;then echo "Missing grep"; fi
link|improve this answer
1  
Stack Overflow is not a forum. Answers may be reordered due to votes, edits, and other reasons, and thus are not suitable for responding to other answers. – ephemient Jul 12 '09 at 3:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.