[소매치기] Liunx + wget

1118 단어 CMS
Linux에서 명령을 통해 전체 사이트와 관련된 파일을 다운로드할 수 있습니다.
방법 1:
wget -r -p -k -np 

매개변수 설명:
-r :  
-p :   HTML  
-k :   X   X.orig。
-np:  

방법 2:
wget -r -np -nd http://example.com/

매개변수 설명:
-r :  
-np:  
-nd:  

  http://example.com  。

방법 3:
wget -m -k http://www.example.com/
wget -m -k -H http://www.example.com/

매개변수 설명:
 ,wget  。

-H,  

-l, –level=NUMBER   (inf   0  )。

 , , , , 。

방법 4:
wget -nc -r -p -k -np -P ${WEBDIR}/ $1
 
# -nc  

# -r, --recursive( ) specify recursive download.( )

# -k, --convert-links( ) make links in downloaded HTML point to local files.(  HTML  )

# -p, --page-requisites( ) get all images, etc. needed to display HTML page.( )

# -np, --no-parent( ) don't ascend to the parent directory.

#    ,  -o  

방법 5:
wget -nc -m -p -k -P ${WEBDIR}/ $1
 
 
# -nc  

# -m or --mirror 

# -p html 

# -k or --convert-links , 

# -P ./LOCAL 

좋은 웹페이지 즐겨찾기