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
bash-4.4$ cat CAPSTITLES | |
SR IMPORTANT PERSON | |
JR SOMETHING OTHERTHING | |
DIR JANITORIAL | |
HEAD OF ALL NECKS | |
PLEB | |
SEÑOR DIVERSITY ADVOCATE | |
SR. PERIOD TESTER | |
LEAD, PUNCTUATION TESTERS | |
WOULD,THIS,WORK,ON,A,CSV? |
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
# this slow-and-dirty one-liner has been split for readability | |
for p in $(gcloud projects list | cut -d ' ' -f 1 | grep -v PROJECT_ID); do \ | |
gcloud config set project "${p}" && \ | |
echo "${p}:" && \ | |
gcloud iam service-accounts list \ | |
| grep '12345678901'; \ | |
done |
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 | |
####################################### | |
# pubess: PUBkey External Sync Script # | |
####################################### | |
## ships "with the safety on" [L{40,42}] | |
# !! be sure to set your username here !! | |
# if you don't, the author considers it an invitation to visit. |
OlderNewer