lsgm/live/util.sh

16 lines
179 B
Bash
Raw Normal View History

2023-09-30 12:46:03 +00:00
function echo_eval {
if [ "${1}" ] ; then
echo "${@}"
eval "${@}"
fi
}
function nop {
true
}
function pause {
echo -n 'Press Enter: '
read
}