Y
Hacker News
new
|
ask
|
show
|
jobs
by
Hello71
1703 days ago
unless you're exclusively running shell built-ins, doesn't running any command at all potentially cause a disk scan
1 comments
nyuszika7h
1703 days ago
Usually the shell creates a cache of commands on start, which can be refreshed with `hash -r`.
link
yissp
1703 days ago
As far as I can tell the hash table is initially empty after you first start the shell. At least, that's the case for bash.
$ hash hash: hash table empty
link