WizardKit/.bin/Scripts/echo-and-hold
2018-07-16 19:40:29 -06:00

12 lines
255 B
Bash
Executable file

#!/bin/bash
#
## Wizard Kit: "echo" text to screen and "hold" by waiting for user input
function usage {
echo "Usage: $(basename "$0") \"text\""
echo " e.g. $(basename "$0") \"Some text to show\""
}
echo -en "$@" && read -r __dont_care
exit 0