© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Taegu Kang
DevOps, SRE, Cloud Engineer, AWS
outline extracting AWS Access key or Secret key from file or credentials file. extracting access key cat ~/.aws/credentials | grep aws_access_key_id | awk '{print $3}' cat ~/.aws/credentials | grep aws_access_key_id | awk -F = '{print $2}' | tr ...
No responses yet.