create a shell file: iobd.sh

#!/bin/bash

for SN in {10000..99999}
do
    BODY='<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <POSTJsonService xmlns="http://tempuri.org/"><ReadJson>{"type":"androidSNUpload","info":{"androidSN":"iOBD2-'"${SN}"'","androidVerCar":"VW"}}</ReadJson></POSTJsonService></soap:Body> </soap:Envelope>'
    RESP=`curl -s -H "Host: mobile.xtooltech.com" -H "Content-Type: text/xml; charset=utf-8" -H "SOAPAction: http://tempuri.org/POSTJsonService" -H "Accept: */*" -H "Accept-Language: zh-cn" -H "User-Agent: Application/50 CFNetwork/887 Darwin/17.0.0" --data-binary "${BODY}" --compressed http://mobile.xtooltech.com/PublicService.asmx| grep -v '"return":"3"'| grep 'androidSNUpload'| wc -l`
    echo "${SN}: ${RESP}"
done

run command in screen

bash iobd.sh | grep -v -E ':.*0'