Shell 脚本自动下载 3000 个文件
#!/bin/bash for i in {1..3000} do url='http://example.com/file'$i'.txt' echo 'Downloading '$url' wget '$url' done
原文地址: https://www.cveoy.top/t/topic/lFA1 著作权归作者所有。请勿转载和采集!
安全问答是一个知识全球问答,包含丰富的问答知识
#!/bin/bash for i in {1..3000} do url='http://example.com/file'$i'.txt' echo 'Downloading '$url' wget '$url' done
原文地址: https://www.cveoy.top/t/topic/lFA1 著作权归作者所有。请勿转载和采集!