mac shell curl 批量上传文件

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