Tell user about read-integer-overflow-as-float
[emacs.git] / test / data / epg / dummy-pinentry
blob2228dfb0c6d353644db27adc9b4e164854ef4087
1 #! /bin/bash
2 # Dummy pinentry
4 # Copyright 2008 g10 Code GmbH
6 # This file is free software; as a special exception the author gives
7 # unlimited permission to copy and/or distribute it, with or without
8 # modifications, as long as this notice is preserved.
10 # This file is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
12 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13 # PURPOSE.
15 echo OK Your orders please
17 while read cmd; do
18 case $cmd in
19 GETPIN) echo D test0123456789; echo OK;;
20 *) echo OK;;
21 esac
22 done