我如何知道 wget 是否确实下载了文件?
我正在编写一个 shell 脚本,它定期从互联网下载存档并对其进行处理。
我使用 wget -N $URL 以便仅在存在较新版本时才下载该文件。我如何知道文件是否已实际下载,以便避免不必要的处理?
I am writing a shell script that periodically downloads an archive off the internet and processes it.
I use wget -N $URL so that the file gets downloaded only if a newer version exists. How can I know if a file was actually downloaded so I can avoid unnecessary processing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试以下方法
You can try the following