如何使用文件协议访问本地系统上的目录?

发布于 2024-07-22 15:36:07 字数 206 浏览 8 评论 0原文

就像/usr/local

我尝试了 file:///usr/local 但失败了

[root@www2 robot]# cd file:///usr/local
-bash: cd: file:///usr/local: No such file or directory

like /usr/local?

I tried file:///usr/local but failed

[root@www2 robot]# cd file:///usr/local
-bash: cd: file:///usr/local: No such file or directory

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

鹿童谣 2024-07-29 15:36:07

如果您需要能够从 shell 访问通用 URL,请尝试使用curl 来替代您的 cat:

curl file:///path/to/file.txt
curl http://www.domain.com/file.txt

但正如其他发帖者指出的那样,shell 本身并不理解 URL。

If you have a requirement to be able to access generic URLs from your shell, try using curl as a replacement for your cat:

curl file:///path/to/file.txt
curl http://www.domain.com/file.txt

But as other posters have pointed out, the shell itself doesn't understand URLs.

话少情深 2024-07-29 15:36:07

如果您必须在命令行上处理 file:///usr/local,您可以删除“file://”部分。 然后执行正常的命令,例如:

echo "file:///usr/local/" |  sed 's/file:\/\///' | cd

If you have to deal with file:///usr/local on the command line, you could just remove the "file://" part. And do then a normal your command, e.g.:

echo "file:///usr/local/" |  sed 's/file:\/\///' | cd
岁月苍老的讽刺 2024-07-29 15:36:07

据我所知,bash 和 cd 不能跨多个协议运行。 如果您想通过其他协议访问内容,则必须将它们安装到本地文件系统。

您不会尝试 cd 到用户在某些 Web 表单上提供的某个位置,是吗?

bash and cd does not function across multiple protocols to my knowledge. If you want to access stuff through other protocols you have to mount them to the local filesystem.

You're not trying to cd to some location provided by a user on some web form are you?

回心转意 2024-07-29 15:36:07

file:/// 不适用于 bash 或衍生 shell。

它可以在大多数浏览器中工作,并且可能在 wgetcurl 中工作,但 bash 不是网络浏览器。

file:/// doesn't work on bash or derivative shells.

It will work in most browsers, and possible wget and curl, but bash is not a web browser.

巴黎夜雨 2024-07-29 15:36:07

file: 协议仅存在于网络浏览器中。 在 Firefox 中尝试一下,应该可以工作。 要在 shell 中执行此操作,只需使用

cd /usr/local/

Don't use file:。 这与你不能这样做的原因是一样的

cat http://www.google.com

(但你必须使用诸如 wgetcurl 之类的东西)。

The file: protocol only exists in web browsers. Try it in Firefox, it should work. To do it in a shell, just use

cd /usr/local/

Don't use file:. It's the same reason why you can't

cat http://www.google.com

Which would be awesome (but you have to use something like wget or curl).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文