How do I pipe the output of aws glue list-jobs...
to aws glue start-job-run
in powershell and bash?
Ex. something like:
aws glue list-jobs --tags name=something (magic here) | aws glue start-job-run (magic here)
This being a solution to the problem: quickly starting multiple jobs using the universal aws cli.
Thank you.