This commit is contained in:
fofolee
2019-04-08 23:22:26 +08:00
commit 7ca94f1141
5960 changed files with 530244 additions and 0 deletions

150
docs/linux/tput.html Normal file
View File

@@ -0,0 +1,150 @@
<h1 id="tput">tput</h1>
<p>通过terminfo数据库对终端会话进行初始化和操作</p>
<h2 id="补充说明">补充说明</h2>
<p><strong>tput命令</strong> 将通过 terminfo 数据库对您的终端会话进行初始化和操作。通过使用 tput您可以更改几项终端功能如移动或更改光标、更改文本属性以及清除终端屏幕的特定区域。</p>
<h3 id="什么是-terminfo-数据库">什么是 terminfo 数据库?</h3>
<p>UNIX 系统上的 terminfo 数据库用于定义终端和打印机的属性及功能包括各设备例如终端和打印机的行数和列数以及要发送至该设备的文本的属性。UNIX 中的几个常用程序都依赖 terminfo 数据库提供这些属性以及许多其他内容,其中包括 vi 和 emacs 编辑器以及 curses 和 man 程序。</p>
<p>与 UNIX 中的大多数命令一样tput 命令既可以用在 shell 命令行中也可以用在 shell 脚本中。为让您更好地理解 tput本文首先从命令行讲起然后紧接着讲述 shell 脚本示例。</p>
<p><strong>光标属性</strong></p>
<p>在 UNIX shell 脚本中或在命令行中,移动光标或更改光标属性可能是非常有用的。有些情况下,您可能需要输入敏感信息(如密码),或在屏幕上两个不同的区域输入信息。在此类情况下,使用 tput 可能会对您有所帮助。</p>
<pre><code>tput clear # 清屏
tput sc # 保存当前光标位置
tput cup 10 13 # 将光标移动到 row col
tput civis # 光标不可见
tput cnorm # 光标可见
tput rc # 显示输出
exit 0</code></pre>
<p><strong>移动光标</strong></p>
<p>使用 tput 可以方便地实现在各设备上移动光标的位置。通过在 tput 中使用 cup 选项,或光标位置,您可以在设备的各行和各列中将光标移动到任意 X 或 Y 坐标。设备左上角的坐标为 (0,0)。</p>
<p>要在设备上将光标移动到第 5 列 (X) 的第 1 行 (Y),只需执行 tput cup 5 1。另一个示例是 tput cup 23 45此命令将使光标移动到第 23 列上的第 45 行。</p>
<p><strong>移动光标并显示信息</strong></p>
<p>另一种有用的光标定位技巧是移动光标,执行用于显示信息的命令,然后返回到前一光标位置:</p>
<pre><code>(tput sc ; tput cup 23 45 ; echo “Input from tput/echo at 23/45” ; tput rc)</code></pre>
<p>下面我们分析一下 subshell 命令:</p>
<pre><code>tput sc</code></pre>
<p>必须首先保存当前的光标位置。要保存当前的光标位置,请包括 sc 选项或“save cursor position”。</p>
<pre><code>tput cup 23 45</code></pre>
<p>在保存了光标位置后,光标坐标将移动到 (23,45)。</p>
<pre><code>echo “Input from tput/echo at 23/45”</code></pre>
<p>将信息显示到 stdout 中。</p>
<pre><code>tput rc</code></pre>
<p>在显示了这些信息之后,光标必须返回到使用 tput sc 保存的原始位置。要使光标返回到其上次保存的位置,请包括 rc 选项或“restore cursor position”。</p>
<p>注意:由于本文首先详细介绍了通过命令行执行 tput因此您可能会觉得在自己的 subshell 中执行命令要比单独执行每条命令然后在每条命令执行之前显示提示更简洁。</p>
<p><strong>更改光标的属性</strong></p>
<p>在向某一设备显示数据时,很多时候您并不希望看到光标。将光标转换为不可见可以使数据滚动时的屏幕看起来更整洁。要使光标不可见,请使用 civis 选项例如tput civis。在数据完全显示之后您可以使用 cnorm 选项将光标再次转变为可见。</p>
<p><strong>文本属性</strong></p>
<p>更改文本的显示方式可以让用户注意到菜单中的一组词或警惕用户注意某些重要的内容。您可以通过以下方式更改文本属性:使文本加粗、在文本下方添加下划线、更改背景颜色和前景颜色,以及逆转颜色方案等。</p>
<p>要更改文本的颜色,请使用 setb 选项(用于设置背景颜色)和 setf 选项(用于设置前景颜色)以及在 terminfo 数据库中分配的颜色数值。通常情况下,分配的数值与颜色的对应关系如下,但是可能会因 UNIX 系统的不同而异:</p>
<ul>
<li>0黑色</li>
<li>1蓝色</li>
<li>2绿色</li>
<li>3青色</li>
<li>4红色</li>
<li>5洋红色</li>
<li>6黄色</li>
<li>7白色</li>
</ul>
<p>执行以下示例命令可以将背景颜色更改为黄色,将前景颜色更改为红色:</p>
<pre><code>tput setb 6 tput setf 4</code></pre>
<p>要反显当前的颜色方案,只需执行<code>tput rev</code></p>
<p>有时,仅为文本着色还不够,也就是说,您想要通过另一种方式引起用户的注意。可以通过两种方式达到这一目的:一是将文本设置为粗体,二是为文本添加下划线。</p>
<p>要将文本更改为粗体,请使用 bold 选项。要开始添加下划线,请使用 smul 选项。在完成显示带下划线的文本后,请使用 rmul 选项。</p>
<h3 id="实例">实例</h3>
<p>使输出的字符串有颜色,底色,加粗:</p>
<pre><code>#!/bin/bash
printf $(tput setaf 2; tput bold)&#39;color show\n\n&#39;$(tput sgr0)
for((i=0; i&lt;=7; i++)); do
echo $(tput setaf $i)&quot;show me the money&quot;$(tput sgr0)
done
printf &#39;\n&#39;$(tput setaf 2; tput setab 0; tput bold)&#39;background color show&#39;$(tput sgr0)&#39;\n\n&#39;
for((i=0,j=7; i&lt;=7; i++,j--)); do
echo $(tput setaf $i; tput setab $j; tput bold)&quot;show me the money&quot;$(tput sgr0)
done
exit 0</code></pre>
<p>输出格式控制函数:</p>
<pre><code>#!/bin/bash
# $1 str print string
# $2 color 0-7 设置颜色
# $3 bgcolor 0-7 设置背景颜色
# $4 bold 0-1 设置粗体
# $5 underline 0-1 设置下划线
function format_output(){
str=$1
color=$2
bgcolor=$3
bold=$4
underline=$5
normal=$(tput sgr0)
case &quot;$color&quot; in
0|1|2|3|4|5|6|7)
setcolor=$(tput setaf $color;) ;;
*)
setcolor=&quot;&quot; ;;
esac
case &quot;$bgcolor&quot; in
0|1|2|3|4|5|6|7)
setbgcolor=$(tput setab $bgcolor;) ;;
*)
setbgcolor=&quot;&quot; ;;
esac
if [ &quot;$bold&quot; = &quot;1&quot; ]; then
setbold=$(tput bold;)
else
setbold=&quot;&quot;
fi
if [ &quot;$underline&quot; = &quot;1&quot; ]; then
setunderline=$(tput smul;)
else
setunderline=&quot;&quot;
fi
printf &quot;$setcolor$setbgcolor$setbold$setunderline$str$normal\n&quot;
}
format_output &quot;Yesterday Once more&quot; 2 5 1 1
exit 0</code></pre>
<p>光标属性例子:</p>
<pre><code>#!/bin/bash
# clear the screen
tput clear
# Move cursor to screen location X,Y (top left is 0,0)
tput cup 3 15
# set a foreground colour using ANSI escape
tput setaf 3
echo &quot;XYX Corp LTD.&quot;
tput sgr0
tput cup 5 17
# Set reverse video mode
tput rev
echo &quot;M A I N - M E N U&quot;
tput sgr0
tput cup 7 15
echo &quot;1\. User Management&quot;
tput cup 8 15
echo &quot;2\. service Management&quot;
tput cup 9 15
echo &quot;3\. Process Management&quot;
tput cup 10 15
echo &quot;4\. Backup&quot;
# Set bold mode
tput bold
tput cup 12 15
read -p &quot;Enter your choice [1-4] &quot; choice
tput clear
tput sgr0
tput rc
exit 0</code></pre>
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->