Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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
share|improve this question
Being the very lazy person that I am, I would typically have used the following silly workaround construct: if [ -f $FILE ]; then; else; echo "File $FILE does not exist."; fi; Probably good that I found this question instead and learned to do it in a more proper way. :) – Alderath Jan 15 at 13:35

11 Answers

up vote 540 down vote accepted

The test command ([ here) 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
share|improve this answer
10  
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
153  
The only stupid question is an unasked one. ;) – John Feminella Mar 21 '09 at 19:06
36  
More succinctly: [ ! -f /tmp/foo.txt ] && echo "File not found!" – DavidWinterbottom Sep 29 '10 at 12:09
3  
@Bill the Lizard I was looking for the same question you asked. I found it using Google. Thanks to you and John. – Luc M Nov 29 '10 at 14:38
5  
@JuanMendes: That trailing semicolon is unnecessary when there's a newline as shown. It's only needed if you have the then on the same line as the if. – Dennis Williamson May 27 '12 at 2:14
show 2 more comments

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

share|improve this answer
32  
Thanks for the relevant man page. – Bill the Lizard Mar 12 '09 at 14:57
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
share|improve this answer
3  
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
9  
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 '12 at 23:40
3  
according to tldp.org/LDP/abs/html/fto.html -a is identical in effect to -e. It has been "deprecated," and its use is discouraged. Anyhow +1 for mentioning to check on broken symlink too – Luca Borrione Sep 1 '12 at 20:55
2  
@dimitrismistriotis two "[" is a non-portable extension implemented (differently) by zsh & bash; generally you should avoid it if at all possible. – Good Person Oct 26 '12 at 15:41
1  
shouldn't $FILE be quoted out to prevent spaces problems? – CharlesB Feb 26 at 16:24

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

share|improve this answer
2  
Thanks, bookmarked. :) – Bill the Lizard Mar 12 '09 at 15:01
1  
man bash (or whatever shell you're using) has an extremely high chance of listing these, on almost any system that has the man pages installed. – rahmu Dec 7 '12 at 13:42

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
share|improve this answer

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/sh
FILE=$1

if [ ! -f "$FILE" ]
then
   echo "File $FILE does not exist."
fi
share|improve this answer
The recommendation is to have every variable surrounded by double quotation marks, unless you know exactly that you have one of the rare cases where it's unnecessary, or one of the even rarer cases where it's harmful. (And no, this is not one of them.) – Uwe May 28 at 11:43
Would you care to elaborate why this is not the case to use double quotation mark? Otherwise I don't see the usefulness in the comment. – artdanil May 28 at 23:29
1  
I meant: This is not one of the rare cases where it's unnecessary or harmful. A shell programmer should get used to enclose (almost) every variable in double quotes; this rule is not limited to [ ... ]. – Uwe May 29 at 9:03
Oh, totally agree. – artdanil May 29 at 14:32

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

share|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

I prefer to do this one liner, in POSIX shell compatible format,

$ [ -f "/$DIR/$FILE" ] || echo "$FILE NOT FOUND"

$ [ -f "/$DIR/$FILE" ] && echo "$FILE FOUND"

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

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

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

share|improve this answer
First of all, unquoted variable references are error-prone. That said, where does it say in any bash manpage that the [ or test built-in would test for file existence of the argument by default (as opposed to -e)? Would that not be ambiguous? AFAIK (and AIUI the section "CONDITIONAL EXPRESSIONS") the only thing that is tested with your approach is that the argument is not empty (or undefined), which is, in this case, a tautology (let $DIR = '' and $FILE = '', then the argument is still '//'). – PointedEars Nov 9 '12 at 2:59
Proof: ls /foo, result ls: cannot access /foo: No such file or directory. [ /foo ] && echo 42, result 42. GNU bash, version 4.2.37(1)-release (i486-pc-linux-gnu). – PointedEars Nov 9 '12 at 3:05
@PointedEars: I failed to specify the -f option, at the moment I wrote this answer. Obviously you could always use -e, if your not sure it will be a regular file. Additionally In all my scripts I quote these constructs, I must have just submitted this without adequate proofing. – TechZilla Nov 17 '12 at 23:42
ACK. But you probably know that a one-liner cannot solve the if-else problem: [ $condition ] && if_true || if_false is error-prone. In any event, I find [ ! -f "$file" ] && if_not_exists easier to read and understand than [ -f "$file" ] || if_not_exists. – PointedEars Nov 18 '12 at 1:33

To reverse a test, use "!". That is equivalent to the "not" logical operator in other languages. Try this:

if [ ! -f /tmp/foo.txt ];
then
    echo "File not found!"
fi

Or written in a slightly different way:

if [ ! -f /tmp/foo.txt ]
    then echo "File not found!"
fi

Or you could use:

if ! [ -f /tmp/foo.txt ]
    then echo "File not found!"
fi

Or, presing all together:

if ! [ -f /tmp/foo.txt ]; then echo "File not found!"; fi

Which may be written (using then "and" operator: &&) as:

[ ! -f /tmp/foo.txt ] && echo "File not found!"

Which looks shorter like this:

[ -f /tmp/foo.txt ] || echo "File not found!"
share|improve this answer

does the next thing count too?

it worked for me (based on this link) :

test -e FILENAME && echo "FILE EXISTS" || echo "FILE DOESNT EXIST"
share|improve this answer

you can use -z , eg

if [ -z `which grep` ] ;then echo "Missing grep"; fi
share|improve this answer
2  
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
2  
@ghostdog74 I do not understand the previous comment. But you missed the point of the question which was to find out whether a file does not exist. You are testing whether a command is not available instead. – PointedEars Nov 9 '12 at 3:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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