til

Bash snippets

zgrep -l  'assumed-role/AdminRole' cloudtrail_123412341234/* -R

This command searches for files containing the text ‘assumed-role/AdminRole’ in the cloudtrail_123412341234 directory and its subdirectories:

zgrep  'AdminRole' cloudtrail_123412341234 -Rl | xargs -I{} bash -c "zless {}"

This command finds files containing ‘AdminRole’ and displays their contents:

xargs für parallelisierung

zgrep  'AdminRole' cloudtrail_123412341234 -Rl | xargs -P2 -n2  -I{} bash -c  "zless {} | jq | grep AdminRole | grep arn:aws:sts" | sed -e 's/^[ \t]*//'  | grep -v , | sort | uniq -c

This is a more complex command that processes CloudTrail logs to find unique AWS STS role assumptions: