hash (Unix)
hash is a Unix command that prints the location information for the commands found.
Operating system | Unix and Unix-like |
---|---|
Type | Command |
Syntax
$ hash [name]
Description
When the user gives a command, the shell searches for the command in the path specified in the PATH environmental variable and stores the location in the hash. This command can be used to search for the command given. The command is built into the shell. C shell implements this command in a different way.
Options
The following options are supported.
- name
- Searches the PATH environmental variable for the name given
Exit Status
This command returns the following exit values:
- 0
- Successful completion
- 1
- An Error occurred
Examples
$ hash
Print the hash table.
$ hash cat
Searches for command cat in the path specified by PATH environmental variable; if found, adds it to the hash.
gollark: I should try infiltrating more servers with it!
gollark: Hmm, I forgot something so if you count in ABR-having servers I have some access to another 3400-member one.
gollark: Interesting.
gollark: ++magic py len([g for g in bot.guilds if g.me.guild_permissions.administrator])
gollark: You what? Wow.
External links
The Wikibook Guide to Unix has a page on the topic of: Commands |
- – Commands & Utilities Reference, The Single UNIX Specification, Issue 7 from The Open Group
- – Solaris 10 User Commands Reference Manual
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.