# linkcheck **Repository Path**: mirrors_docker/linkcheck ## Basic Information - **Project Name**: linkcheck - **Description**: Web site link checker - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Web site link checker. This tool will traverse the url you specify, parse the html, and then check that each URL linked on that page is GET-able. Any linked pages that start with the same url fragment as your original request will also be parsed. So the following example will test all links on all pages that it finds on that site: ``` $ ./linkcheck http://some.url.com/ ``` Whereas the next example will only test pages with url's that begin with `http://some.url.com/some/sub/section/` ``` $ ./linkcheck http://some.url.com/some/sub/section/ ```