#1liner — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #1liner, aggregated by home.social.
-
#linux #bash #1liner
Was hat auch noch Jahrestag an einem bestimmten Datum im Jahr . z.B Geburtstagecho "Was war eigentlich am:"; read -p "Tag (2-stellig): " tag; read -p "Monat (2-stellig): " monat;calendar -A 0 -t $monat$tag
https://gist.github.com/dewomser/44be73f9c746f50834e0f029e9dd1834
-
pretty happy w/this shell oneliner to get the deets on the unique kms keys used in the last 100k decryptions
aws cloudtrail lookup-events --lookup-attributes "AttributeKey=EventName,AttributeValue=Decrypt" --region us-east-1 --max-results 100000 | jq -r '.Events[].CloudTrailEvent' | jq -r | grep '"ARN"' | sed 's!.*key/!!;s!"!!' | sort -u | xargs -n1 aws kms describe-key --key-id | grep -i 'keyid\|creation\|manager\|descr' | sed 's!.*"\(.*\)":!\1!;s!",!"!;s!KeyId!\n\nKeyId!'
#unix #shell #aws #awscli #bash #commandline #unixmagic #commandlineexcellence #oneliner #1liner