WizardKit/scripts/echo-and-hold

12 lines
254 B
Bash
Executable file

#!/bin/bash
#
## WizardKit: "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