提示符效果: 代码: #?Sexy?Solarized?Bash?Prompt,?inspired?by?"Extravagant?Zsh?Prompt"
#?Customized?for?the?Solarized?color?scheme?by?Sean?O‘Neil
if?tput?setaf?1?&>?/dev/null...
分类:
系统相关 时间:
2015-10-09 00:51:53
阅读次数:
291
linux 终端控制-- 多彩输出 格式排版 在unix/linux的终端下,怎么控制终端输出的颜色和格式呢,当然了有专门的工具,tput,但是能被terminal直接读懂的格式化字符串更通用。先来个实际的例子,在屏幕的最上部的右侧输出当前时间,一秒刷新一次。可能会想到使用类似Ncurse的框架完成...
分类:
系统相关 时间:
2015-09-04 14:07:01
阅读次数:
207
原理:ls -G可显示彩色文件名。在终端输入:nano ~/.bash_profile辑器.bash_profile文件,粘贴下面内容:alias cls='tput reset'alias egrep='egrep --color=auto'alias fgrep='fgrep --color=a...
分类:
系统相关 时间:
2015-08-06 15:00:55
阅读次数:
369
题目大意:从1~1061\sim 10^6有10610^6个基底,一开始上面都没有积木,高度为00,连续的一段高度大于00的基底算作一个towertower,显然一开始towertower数为00。
接下来有两个操作:
1.put x c 1.put~x~c~将cc个积木放在第xx个基底上。
2.tput t x c 2.tput~t~x~c~将cc个积木放在第tt个towertower中的第...
分类:
其他好文 时间:
2015-06-15 22:12:06
阅读次数:
215
#!/bin/bashecho -n count:tput sccount=0;while true;doif [ $count -lt 40 ];then let count++; sleep 1; tput rc tput ed echo -n $count;else exi...
分类:
系统相关 时间:
2015-04-19 19:18:32
阅读次数:
257
shell中打印进度条,需要用到tput、printf函数。#tputrowcol光标移到第row行第col列#tputcols获取窗口最大列数#tputlines获取窗口最大行书#echo$LINENO获取光标当前行号functiongetprostr(){pchar=$1ptotal=$2outstr=""numcol=`tputcols`coltotal=$[$numcol/2/$ptotal]for((i=1..
分类:
系统相关 时间:
2015-02-05 18:43:54
阅读次数:
271
各种操作:put x c:表示在第 x 列上增加 c 个积木(c>0)。tput t x c:表示在塔 t 的第 x 列上增加 c 个积木(c>0)。towers:询问共有几座塔。cubes t:询问第 t 座塔共有几个积木。length t:询问第 t 座塔的长度。tcubes t x:询问第 t...
分类:
其他好文 时间:
2014-08-08 21:09:06
阅读次数:
340
1 #!/bin/bash 2 #based on a script from
http://invisible-island.net/xterm/xterm.faq.html 3 exec /dev/tty 8 # tput u7
> /dev/tty # when TERM=xt...
分类:
其他好文 时间:
2014-05-21 18:43:15
阅读次数:
300
NAMEtput, reset - initialize a terminal or
query terminfo databaseSYNOPSIS tput [-Ttype] capname [parms ... ] tput [-Ttype]
init tpu...
分类:
系统相关 时间:
2014-05-14 08:51:13
阅读次数:
601