Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perl-5.8.0 / lib / site_perl / 5.8.0 / Psh / Builtins / Rehash.pm
CommitLineData
86530b38
AT
1package Psh::Builtins::Rehash;
2
3require Psh::Util;
4
5=item * C<rehash>
6
7Empties the path and executable hashes. This might be necessary if
8executables are renamed/removed/added while you're logged in.
9
10=cut
11
12sub bi_rehash
13{
14 %Psh::Util::command_hash=();
15 %Psh::Util::path_hash=();
16 return (1,undef);
17}
18
191;