문제

How do I run shell scripts on IronWorker? It would only perform a simple Curl inside the worker.

도움이 되었습니까?

해결책

curl.sh

#!/bin/sh

curl http://www.google.com

curl.worker

runtime "binary"
exec "curl.sh"
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top