Context
This concerns ZSH tilde expansion (as in bash tilde expansion).
Example: ~http
is expanded to /srv/http
which is (roughly) the home for user http
set in /etc/passwd
.
What I want to do
I would like to configure ZSH in order to get any filename tilde expansion I wish.
This would be something like setting alias ~foo /foo/bar
in my .zshrc
.
What I do not want
I could create (as root) the user foo
and set it’s home to /foo/bar
but since any user should be able to do this, such a solution is not acceptable.
Also, this has nothing to do with the completion of ~
to $HOME
.
Misc
This post discuss the nature of bash tilde expansion: Meaning of tilde in Linux bash (not home directory).
Thanks for any answer! ;-)