#!/bin/sh # Requires expect PREFIX="THIS IS TOTALLY SUPER SECRET" PHRASE="THIS IS TOTALLY SUPER SECRET" # Supress echo, and trap exit for correct restoration stty -echo trap 'stty echo' EXIT # Read without processing at all IFS="" read -r MASTER # Restore state stty echo trap - EXIT USEECHO () { echo $1 $2 } USEKEYCHAIN () { expect - <