This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
BEGIN_RED='\e[31m' | |
END_RED='\e[0m' | |
wildcard_policies=() | |
function get_policy_arns () { | |
policy_arns=($(aws iam list-policies --query Policies[].Arn --scope Local --output text)) | |
policy_count=${#policy_arns[@]} | |
echo "$policy_count customer managed policies found." | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print("Hello again") |