Find out if shell command is aliased or not
Q. Sometime I get confuges whether command is an alias or it is real command. How do I find out if shell command is aliased?
A: You need to use type command. It rells whether command is an alias, function, buitin command or executable command file.
For example:
$ type --all ls
Output:
ls is aliased to `ls --color=auto' ls is /bin/ls
OR
$ type alias
alias is a shell builtin
So for each command, it indicate how it would be interpreted if used as a command name. You can also try out following options:
- If the -t option is used, `type' outputs a single word which is one of alias, keyword, function, builtin, file etc
- If the -p flag is used, `type' either returns the name of the disk file that would be executed, or nothing if `type -t NAME' would not return `file'.
- If the -a flag is used, `type' displays all of the places that contain an executable named `file'. This includes aliases, builtins, and functions, if and only if the -p flag is not also used.
- The -f flag suppresses shell function lookup.
- The -P flag forces a PATH search for each NAME, even if it is an alias, builtin, or function, and returns the name of the disk file that that would be executed.
See also:
E-mail this to a friend
Printable version
Related Other Helpful FAQs:
- Bash Shell: Ignore Aliases / Functions When Running A Command
- How to use bash shell
- Linux / UNIX find files with symbolic links
- Linux: How can I find a file on my system?
- Find and Delete File If It Is More Than One Hour Old in UNIX Shell
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!



Recent Comments
Today ~ 12 Comments
Yesterday ~ 3 Comments
09/06/2008 11:03 pm (2 days ago) ~ 12 Comments
09/06/2008 02:10 pm (2 days ago) ~ 7 Comments
09/06/2008 06:51 am (2 days ago) ~ 2 Comments