#!/bin/sh desc=${ASKPASS_DESC:-Authenticating as \"$(id -un)\" } prompt=${ASKPASS_PROMPT:-Password} cat <<-EOF | ${PINENTRY:-pinentry} 2>/dev/null | awk '/D./{ print $2; }' SETTIMEOUT 30 SETDESC ${desc} SETPROMPT ${prompt} SETTITLE askpass GETPIN EOF