The tput tag has no wiki summary.
2
votes
1answer
75 views
bash script , echo output in box
I have created this Function , which generate below output on terminal , but this function seems complex, So I posted here for any improvement or for same alternate solution.
#!/bin/bash
function ...
1
vote
1answer
75 views
screen buffer and dialog
I was trying to use different screen buffer for my script using tput. Below is small script that I am running.
tput smcup
clear
dialog --yesno "Do you want to continue?" 0 0
rc=$?
clear
tput rmcup
if ...
3
votes
1answer
81 views
How to use the Meta/Alt Key with tput?
I want to redefine keybindings for the commandline of a lisp dialect. The commandline is actually modeled after Vi and implemented with tput/terminfo. I want an alternative version with Emacs ...
3
votes
2answers
303 views
Print console colors
Wrote a bash function to display the console colors.
But, it seems some of the colors are not possible to show that way! (?)
Also, note the strange "bright black"!
(Note: The below screendump is of ...
