samol
samol

Reputation: 20570

How to run shell scripts on IronWorker?

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

Upvotes: 1

Views: 229

Answers (1)

samol
samol

Reputation: 20570

curl.sh

#!/bin/sh

curl http://www.google.com

curl.worker

runtime "binary"
exec "curl.sh"

Upvotes: 3

Related Questions