You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678 |
- #!/bin/sh
- # usqge: client.sh UPLOAD_ID PROGRESS_URL
- cont=""
- while [ "$cont" != "new Object({ 'state' : 'done' })" ]
- do
- cont=`curl -s -H "x-progress-id: $1" $2 | sed -e 's/[\n\r]//'`
- echo "[$1] '$cont'"
- done
|