Skip to content

Instantly share code, notes, and snippets.

@bartoszadamczyk
Last active May 29, 2017 22:05
Show Gist options
  • Select an option

  • Save bartoszadamczyk/65fc1d6f835c72dda578b50f8c6cb1db to your computer and use it in GitHub Desktop.

Select an option

Save bartoszadamczyk/65fc1d6f835c72dda578b50f8c6cb1db to your computer and use it in GitHub Desktop.
AWS CLI ecs deregister-task-definition bash loop
#!/bin/bash
for i in {1..199}
do
sleep 0.5s
aws ecs deregister-task-definition --task-definition playwat-api-service:$i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment