How can I check in bash and csh if commands are builtin? Is there a method compatible with most shells?
|
|
|
You can try using
otherwise, you get the location of the command in your PATH. |
|||
|
|
|
In bash, you can use the 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
From the
|
||||
|
|
|
For
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. |
|||
|
|