You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tilde_expand: don't use regexes, error out for ~user expansion.
Expanding ~user/path to /home/user/path doesn't work on many UNIX
systems, including OS X. The correct way to do this is to use the
getpwnam function to look up a user's home directory from their
user name. I'll implement that — it will look a lot like the code
for Stat and will be handy for querying things about users. For
now I'm just making ~user expansion an error.
0 commit comments