1

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

samol
  • 18,950
  • 32
  • 88
  • 127

1 Answers1

3

curl.sh

#!/bin/sh

curl http://www.google.com

curl.worker

runtime "binary"
exec "curl.sh"
samol
  • 18,950
  • 32
  • 88
  • 127