mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 04:33:00 +02:00
14 lines
171 B
Bash
Executable File
14 lines
171 B
Bash
Executable File
#!/bin/sh
|
|
Q=$@
|
|
|
|
/bin/echo -n "$Q, are you sure (y/N)? "
|
|
read -n1 yorn
|
|
echo
|
|
|
|
if [ x$yorn != "xy" ] && [ x$yorn != "xY" ]; then
|
|
echo "OK, aborting."
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|