vote up 4 vote down star
1

Currently I'm doing some unit tests which are executed from bash. Unit tests are initialized, executed and cleaned up in a bash script. This script usualy contains an init(), execute() and cleanup() functions. But they are not mandatory. I'd like to test if they are or are not defined.

I did this previously by greping and seding the source, but it seemed wrong. Is there a more elegant way to do this?

Edit: The following sniplet works like a charm:

fn_exists()
{
    type $1 | grep -q 'shell function'
}
flag

4 Answers

vote up 13 vote down check

I think you're looking for the 'type' command. It'll tell you whether something is a function, built-in function, external command, or just not defined. Example:

batzel@batzel-laptop:~$ type foo
bash: type: foo: not found
batzel@batzel-laptop:~$ type ls
ls is aliased to `ls --color=auto'
batzel@batzel-laptop:~$ which type
batzel@batzel-laptop:~$ type type
type is a shell builtin
link|flag
type -t $function is the meal ticket. – Allan Wind Sep 17 '08 at 18:06
Why didn't you post it as an answer? :-) – terminus Sep 19 '08 at 20:45
Because I had posted my answer using declare first :-) – Allan Wind Sep 20 '08 at 18:47
Why not rewrite it? – terminus Sep 21 '08 at 5:56
vote up 0 vote down

This tells you if it exists, but not that it's a function

fn_exists() { type $1 >/dev/null 2>&1; }

link|flag
vote up 0 vote down

I would improve it to:

fn_exists()
{
    type $1 2>/dev/null | grep -q 'is a function'
}

And use it like this:

fn_exists test_function
if [ $? -eq 0 ]; then
    echo 'Function exists!'
else
    echo 'Function does not exist...'
fi
link|flag
vote up 2 vote down
$ g() { return; }
$ declare -f g > /dev/null; echo $?
0
$ declare -f j > /dev/null; echo $?
1
link|flag

Your Answer

Get an OpenID
or

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