Hacker News new | ask | show | jobs
by MoSal 3677 days ago
Interesting.

Why is this interpreted as a relative path?

     cd /etc
     curl file://resolv.conf
1 comments

Well, it's ill-formed, so what the UA does with it isn't really specified; cURL presumably treats it as a path relative to . because that's what the developer(s) decided that cURL should do. (For comparison, Firefox transforms it into file:///resolv.conf, then tries to find /resolv.conf on localhost and fails.)