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.

How can I check in bash and csh if commands are builtin? Is there a method compatible with most shells?

share|improve this question

4 Answers

up vote 4 down vote accepted

You can try using which in csh or type in bash. If something is a built-in command, it will say:

# which setenv
setenv: shell built-in command.

otherwise, you get the location of the command in your PATH.

share|improve this answer

In bash, you can use the builtin builtin :-)

If you try to call an explicit builtin command and it isn't one, you get an error exit code. See the following example where cd is a builtin but ls is not:

pax> builtin cd >/dev/null 2>&1 ; echo $?
0
pax> builtin ls >/dev/null 2>&1 ; echo $?
1

From the bash man page:

builtinshell-builtin [arguments]

          Execute the specified shell builtin, passing it arguments, and return its exit status. This is useful when defining a function whose name is the same as a shell builtin, retaining the functionality of the builtin within the function. The cd builtin is commonly redefined this way. The return status is false if shell-builtin is not a shell builtin command.

share|improve this answer

For bash, use type command

share|improve this answer

For csh, you can use:

which command-name

If it's built-in, it will tell so. Not sure if it works the same for bash. We careful with aliases, though. There may be options for that.

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.