25 lines
425 B
Markdown
25 lines
425 B
Markdown
|
|
# hash
|
||
|
|
|
||
|
|
> Bekijk locaties van gecachete uitvoerbare bestanden.
|
||
|
|
> Meer informatie: <https://www.gnu.org/software/bash/manual/bash.html#index-hash>.
|
||
|
|
|
||
|
|
- Bekijk gecachete commando locaties voor de huidige shell:
|
||
|
|
|
||
|
|
`hash`
|
||
|
|
|
||
|
|
- Wis de hashtabel:
|
||
|
|
|
||
|
|
`hash -r`
|
||
|
|
|
||
|
|
- Verwijder een specifiek commando van de hashtabel:
|
||
|
|
|
||
|
|
`hash -d {{commando}}`
|
||
|
|
|
||
|
|
- Toon het volledig pad van een commando:
|
||
|
|
|
||
|
|
`hash -t {{commando}}`
|
||
|
|
|
||
|
|
- Toon de help:
|
||
|
|
|
||
|
|
`hash --help`
|