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