URL을 통해 Linux 파일 콘텐츠에 액세스

URL을 통해 Linux 파일 콘텐츠에 액세스

URL을 통해 Linux 파일 콘텐츠에 액세스하고 싶습니다. URL에 접속하면 화면에 표시된 파일의 내용을 볼 수 있습니다. 이것을 할 수 있는 프로그램이 있나요?

답변1

경로가 포함된 파일이 있는 경우 /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

관련 정보