| 양쪽 이전 판이전 판다음 판 | 이전 판 |
| tech:wget [2018/12/03 23:13] – [옵션] V_L | tech:wget [2023/07/22 15:04] (현재) – [사이트 전체 받기] V_L |
|---|
| | |
| | |
| * --recursive: download the entire Web site. | <file> |
| * --domains website.org: don't follow links outside website.org. | --recursive: download the entire Web site. |
| * --no-parent: don't follow links outside the directory tutorials/html/. | --domains website.org: don't follow links outside website.org. |
| * --page-requisites: get all the elements that compose the page (images, CSS and so on). | --no-parent: don't follow links outside the directory tutorials/html/. |
| * --html-extension: save files with the .html extension. | --page-requisites: get all the elements that compose the page (images, CSS and so on). |
| * --convert-links: convert links so that they work locally, off-line. | --html-extension: save files with the .html extension. |
| * --restrict-file-names=windows: modify filenames so that they will work in Windows as well. | --convert-links: convert links so that they work locally, off-line. |
| * --no-clobber: don't overwrite any existing files (used in case the download is interrupted and resumed). | --restrict-file-names=windows: modify filenames so that they will work in Windows as well. |
| | --no-clobber: don't overwrite any existing files (used in case the download is interrupted and resumed). |
| | </file> |
| ====사진 받기==== | ====사진 받기==== |
| |
| wget -r -np --reject "*.txt" http://192.168.0.100/images | wget -r -np --reject "*.txt" http://192.168.0.100/images |
| |
| * -r은 --recursive를 줄인 것. | * -r은 --recursive를 줄인 것. |