Skip to content

Instantly share code, notes, and snippets.

@Matrix7867
Created May 10, 2019 07:58
Show Gist options
  • Save Matrix7867/6c901d627b883ae95bc63c8fcd2f3e89 to your computer and use it in GitHub Desktop.
Save Matrix7867/6c901d627b883ae95bc63c8fcd2f3e89 to your computer and use it in GitHub Desktop.
To delete all AWS lambda function from your account
aws lambda list-functions | grep FunctionName | cut -d':' -f 2 | sed 's/"//g' | sed 's/,//g' | while read -r line; do aws lambda delete-function --function-name $line; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment