Pergunta

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

Foi útil?

Solução

curl.sh

#!/bin/sh

curl http://www.google.com

curl.worker

runtime "binary"
exec "curl.sh"
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top