2013-04-15 56 views

回答

2

看看tput命令。 tput用於改變終端特性。

e.g

tput bold 
tput setaf 3 
tput setab 4 
tput reset 
0

嘗試安裝「盒子」 - 從手冊頁:

說明框中的文本過濾器,可以得出任何種類的箱 圍繞其輸入文本。箱子設計選擇從簡單的箱子到 複雜的ASCII藝術。一個箱子也可以被移除和修理,即使 已經被嚴重損壞了。由於框可以在任何一方打開,因此框也可以用於以任何編程語言創建區域 註釋。通過附加到自由格式 配置文件,可以輕鬆地添加和共享各種新盒子設計 。盒最初打算與 vim(1)文本編輯器一起使用,但它可以綁定到任何文本編輯器,其中 支持過濾器,以及從命令行調用爲 獨立工具。

$ boxes -h 
boxes - draws any kind of box around your text (and removes it) 
     (c) Thomas Jensen <[email protected]> 
     Web page: http://boxes.thomasjensen.com/ 
Usage: boxes [options] [infile [outfile]] 
     -a fmt alignment/positioning of text inside box [default: hlvt] 
     -c str use single shape box design where str is the W shape 
     -d name box design [default: first one in file] 
     -f file configuration file 
     -h  print usage information 
     -i mode indentation mode [default: box] 
     -k bool leading/trailing blank line retention on removal 
     -l  list available box designs w/ samples 
     -m  mend box, i.e. remove it and redraw it afterwards 
     -p fmt padding [default: none] 
     -r  remove box 
     -s wxh box size (width w and/or height h) 
     -t str tab stop distance and expansion [default: 8e] 
     -v  print version information 

:)
戴爾