Closed. This question is off-topic。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
                        
                        6年前关闭。
                                                                                            
                
        
我想下载网页的全部内容。 (仅首页)

我只需要第一页。没有递归

如何使用Windows的wget做到这一点。

最佳答案

我寻找到了自我。

这是我创建的外壳

@echo off
echo Hello this is Deniz's webpage downloader
set /P theuserinput="Please Enter website that you like to download: "

wget.exe -p %theuserinput%

pause

09-25 16:37