8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Amazon Web ServiceAdvent Calendar 2013

Day 3

AWS CLIの --query オプションが便利。

Last updated at Posted at 2013-12-04

結構前から --query オプションが増えてたのは気づいてたんだが jq で困ってなかったので使い方調べてなかったんだけどこれ便利だね!ついでに --output も。

今まで↓こんな風にしていたことが

aws ec2 describe-images --owner self | jq ".Images[].ImageId" -r

jq とか無しで↓こんな風に書けるようになった。

aws ec2 describe-images --owner self --query "Images[*].ImageId" --output text

あれ?比べてみると長くなってるねw でもawsコマンド単体で完結できる点がとてもよい。

8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?