mac shell curl 批量上传文件
时间:2021-08-19 08:42:44
收藏:0
阅读:23
find ./apk -type f -name ‘*.apk‘ -print0 | xargs -0 -p -I "{}" sh curl --form file=@"{}" http://website/upload.php sh curl --form file=@./apk/xx.apk http://website/upload.php?...n
加上-p 执行前询问,不加则直接执行
原文:https://www.cnblogs.com/ZhYQ-Note/p/15158390.html
评论(0)