Skip to content

Instantly share code, notes, and snippets.

View gewenyu99's full-sized avatar

Vincent (Wen Yu) Ge gewenyu99

View GitHub Profile
@nemani
nemani / download_all_lambda_functions.sh
Last active March 27, 2024 12:10
Download All Lambda Functions
# Parallelly download all aws-lambda functions
# Assumes you have ran `aws configure` and have output-mode as "text"
# Works with "aws-cli/1.16.72 Python/3.6.7 Linux/4.15.0-42-generic botocore/1.12.62"
download_code () {
local OUTPUT=$1
aws lambda get-function --function-name $OUTPUT --query 'Code.Location' | xargs wget -O ./lambda_functions/$OUTPUT.zip
}
mkdir -p lambda_functions