我想通过 url 访问 Linux 文件内容。当我们访问 url 时,我们可以看到该文件的内容显示在屏幕上。有没有什么程序可以做到这一点。
答案1
如果您有一个包含 path 的文件/x/y/z
,curl
可以使用file://
协议来执行此操作:
curl file:///x/y/z
例子:
$ curl file:///etc/hosts
#
# /etc/hosts: static lookup table for host names
#
#<ip-address> <hostname.domain.org> <hostname>
127.0.0.1 localhost.localdomain localhost
::1 localhost.localdomain localhost