Search code examples
iron.ioironworker

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.


Solution

  • curl.sh

    #!/bin/sh
    
    curl http://www.google.com
    

    curl.worker

    runtime "binary"
    exec "curl.sh"