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 want to write a bash function that check if a file has certain properties and returns true or false.. then I can use it in my scripts in the "if". But what should I return?

function myfun(){ ... return 0; else return 1; fi;}

then I use it like this:

if myfun filename.txt; then ...

of course this doesn't work.. how can this be accomplished?

share|improve this question
1  
drop the function keyword, myfun() {...} suffices – glenn jackman Mar 25 '11 at 13:33
1  
What matters to if is the zero-exit status of myfun: if myfun exits with 0, then ... is executed; if it is anything else else ... is executed. – Eelvex Mar 25 '11 at 18:26
5  
@glenn what a useless comment? its an optional keyword, good style to keep it (for example, one could use it to grep for functions in a file) – nhed Mar 26 '11 at 2:49

3 Answers

up vote 27 down vote accepted

Use 0 for true and 1 for false.

Sample:

#!/bin/bash

isdirectory() {
  if [ -d "$1" ]
  then
    return 0
  else
    return 1
  fi
}


if isdirectory $1; then echo "is directory"; else echo "nopes"; fi
share|improve this answer
mmm.. but then I'll have to use the [ ] operator? Or it should work like that? Maybe then I'm doing something else wrong... – luca Mar 25 '11 at 11:44
2  
No you don't need to do that - see the sample. – Erik Mar 25 '11 at 11:44
@Erik can you please explain about that $1 on the if. I didn't understand how it works without [] and it doesn't show any value even. – Dewsworld May 17 '12 at 4:59
"Use 0 for true and 1 for false." - mind-boggling. – Bengt Sep 11 '12 at 10:55
2  
For better readability you can use the 'true' command (which does nothing and completes successfully, i.e. returns 0) and 'false' command (which does nothing and completes unsuccessfully, i.e. returns a non-zero value). Also, a function that ends without an explicit return statement returns the exit code of the last executed command, so in the example above, the function body can be reduced to only [ -d "$1" ]. – amichair Mar 2 at 18:47
myfun(){
    [ -d "$1" ]
}
if myfun "path"; then
    echo yes
fi
# or
myfun "path" && echo yes
share|improve this answer

Be careful when checking directory only with option -d !
if variable $1 is empty the check will still be successfull. To be sure, check also that the variable is not empty.

#! /bin/bash

is_directory(){

    if [[ -d $1 ]] && [[ -n $1 ]] ; then
        return 0
    else
        return 1
    fi

}


#Test
if is_directory $1 ; then
    echo "Directory exist"
else
    echo "Directory does not exist!" 
fi
share|improve this answer

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.