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 执行前询问,不加则直接执行

posted on 2021-08-18 19:03  ZhYQ_note  阅读(227)  评论(0)    收藏  举报

导航