summaryrefslogtreecommitdiffstats
path: root/src/ui/cli.sh
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2015-10-29 20:48:49 (EDT)
committer P. J. McDermott <pj@pehjota.net>2015-10-29 20:48:49 (EDT)
commit869b1875f2febe169f5701e41de3e653e7a8343c (patch)
treea7f5e48649dc09a97c614f54d0e80dc5ad1adefe /src/ui/cli.sh
parent1acca073f3fc1b9e346a398794e2acd520d0f94d (diff)
downloadfirman.sh-869b1875f2febe169f5701e41de3e653e7a8343c.zip
firman.sh-869b1875f2febe169f5701e41de3e653e7a8343c.tar.gz
firman.sh-869b1875f2febe169f5701e41de3e653e7a8343c.tar.bz2
message(): New function
Diffstat (limited to 'src/ui/cli.sh')
-rw-r--r--src/ui/cli.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ui/cli.sh b/src/ui/cli.sh
index b341c9e..369694c 100644
--- a/src/ui/cli.sh
+++ b/src/ui/cli.sh
@@ -16,6 +16,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
cli_tty=''
+cli_msg=''
cli_init_ui()
{
@@ -53,6 +54,16 @@ cli_err()
printf "Error: ${fmt}\n" "${@}" >"${cli_tty}"
}
+cli_message()
+{
+ local msg="${1}"
+ shift 1
+
+ printf '%s\n\n' "${msg}" >"${cli_tty}"
+
+ return 0
+}
+
cli_show_menu()
{
local title="${1}"