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
function getpassword() { | |
# Written for Mac OS X Keychain. | |
SERVICE=$1 | |
ACCOUNT=$2 | |
security find-internet-password -s $SERVICE -a $ACCOUNT -w | tr -d '\n' | |
} | |
function update_github_issues() { | |
read -p "Enter the repo owner: " OWNER | |
read -p "Enter the repo name: " REPO |