summaryrefslogtreecommitdiff
path: root/functions/cursor.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2010-09-26 12:38:38 +0200
committerDaniel Baumann <daniel@debian.org>2010-09-26 15:11:45 +0200
commit152d608f61fd22a1414c3a90ba061b790200350a (patch)
tree44a6d3a12cd11067aea2a4d43eb9133cc25bad2f /functions/cursor.sh
downloadvyos-live-build-152d608f61fd22a1414c3a90ba061b790200350a.tar.gz
vyos-live-build-152d608f61fd22a1414c3a90ba061b790200350a.zip
Adding debian version 3.0~a1-1.
Diffstat (limited to 'functions/cursor.sh')
-rwxr-xr-xfunctions/cursor.sh74
1 files changed, 74 insertions, 0 deletions
diff --git a/functions/cursor.sh b/functions/cursor.sh
new file mode 100755
index 000000000..6ea1d9a9e
--- /dev/null
+++ b/functions/cursor.sh
@@ -0,0 +1,74 @@
+#!/bin/sh
+
+## live-build(7) - System Build Scripts
+## Copyright (C) 2006-2010 Daniel Baumann <daniel@debian.org>
+##
+## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
+## This is free software, and you are welcome to redistribute it
+## under certain conditions; see COPYING for details.
+
+
+Cursor_goto_position ()
+{
+ __LINE="${1}"
+ __COLUMN="${2}"
+
+ #echo -e "[${__LINE};${__COLUMN};H\c"
+ printf "[${__LINE};${__COLUMN};H"
+}
+
+Cursor_save_position ()
+{
+ #echo -e "\c"
+ printf ""
+}
+
+Cursor_restore_position ()
+{
+ #echo -e "\c"
+ printf ""
+}
+
+Cursor_line_up ()
+{
+ __LINES="${1}"
+
+ #echo -e "[${__LINES}A\c"
+ printf "[${__LINES}A"
+}
+
+Cursor_line_down ()
+{
+ __LINES="${1}"
+
+ #echo -e "[${__LINES}B\c"
+ printf "[${__LINES}B"
+}
+
+Cursor_columns_forward ()
+{
+ __COLUMNS="${1}"
+
+ #echo -e "[${__COLUMNS}C\c"
+ printf "[${__COLUMNS}C"
+}
+
+Cursor_columns_backward ()
+{
+ __COLUMNS="${1}"
+
+ #echo -e "[${__COLUMNS}D\c"
+ printf "[${__COLUMNS}D"
+}
+
+Cursor_clear_screen ()
+{
+ #echo -e "\c"
+ printf ""
+}
+
+Cursor_erase_EOL ()
+{
+ #echo -e "\c"
+ printf ""
+}