This file contains 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
#!/usr/bin/env python3 | |
import argparse | |
import configparser | |
import os | |
import sys | |
CONFIG_PATH = os.path.expanduser("~/.aws/config") | |
CREDENTIALS_PATH = os.path.expanduser("~/.aws/credentials") | |
# Parse profile_name argument |
This file contains 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 | |
# NOTE: For mas to work with free App Store apps, you MUST do this: | |
# Go to System Preferences/App Store, select 'Save Password' for Free Downloads. | |
# NOTE: The current version of 'mas' in homebrew does not prompt for passwords. | |
read -p "Mac App Store username: " masuser | |
read -s -p "Mac App Store password: " maspass | |
echo "" |