5 lines
140 B
Bash
Executable File
5 lines
140 B
Bash
Executable File
#!/bin/bash
|
|
|
|
match="debian-12-amd64"
|
|
aws ec2 describe-images --owners --out json | jq '.Images[] | select( .Name | contains("'$match'")) '
|