方法:Gnomeターミナルで下線、太字、斜体、取り消し線、および色?
太字
イタリック
̲n̲d̲e̲r̲l̲i̲n̲e̲
s̶t̶r̶i̶k̶e̶̶i̶t̶̶l̶i̶k̶̶e̶̶i̶t̶s̶̶h̶o̶t
background
font
<(わからない場合はそのモノ)
ANSI/VT100端末および端末エミュレータは、白黒のテキストを表示できるだけではありません。エスケープシーケンスのおかげで、色と書式設定されたテキストを表示できます。これらのシーケンスは、エスケープ文字(「^ [」または「Esc」で表されることが多い)と、それに続く他の文字「Esc [FormatCodem」で構成されます。
Bashでは、次の構文を使用して文字を取得できます。
\e
\033
\x1B
コマンド(簡単なコピーアンドペースト用):
echo -e "\e[1mbold\e[0m"
echo -e "\e[3mitalic\e[0m"
echo -e "\e[4munderline\e[0m"
echo -e "\e[9mstrikethrough\e[0m"
echo -e "\e[31mHello World\e[0m"
echo -e "\x1B[31mHello World\e[0m"
ソース(すべてのタイプの前景/背景色コードを含む): http://misc.flogisoft.com/bash/tip_colors_and_formatting
Sylvainの答えを拡張するために、いくつかのヘルパー関数:
ansi() { echo -e "\e[${1}m${*:2}\e[0m"; }
bold() { ansi 1 "$@"; }
italic() { ansi 3 "$@"; }
underline() { ansi 4 "$@"; }
strikethrough() { ansi 9 "$@"; }
red() { ansi 31 "$@"; }
それから
まだ説明されていないものは、2つまたは3つのパラメーターの組み合わせです。 g。 boldおよびunderline、定義済みの色で。これは、たとえば次の3ウェイ構文によって実現されます。
~$ printf "\e[3;4;33mthis is a test\n\e[0m"
「これはテストです」が黄色で印刷されます(33m
)、斜体(3m
)AND下線付き(4m
)。\e[
を毎回繰り返す必要はありませんnot。
Sylvainと同様に、毎回設定をリセットする\e[0m
も追加したことに注意してください。スクリプトが永続的にを変更する場合、スクリプトを使用するユーザーはそれを嫌う可能性があるため、スクリプトでリセットを取得するには絶対に注意する必要があることは言うまでもありませんターミナルでの色とスタイルの設定!
Ubuntu 18.04 LTSでデビューしたGNOMEターミナル3.28(VTE 0.52)は、キティに見られるカーリーや色付きの下線、Konsoleに見られる上線、そして最後に誰もが非常に愛されている、または大いに嫌われている点滅属性を含む、いくつかのスタイルのサポートを追加します。
これらは、VTEが少なくともバージョン0.52である場合、他のVTEベースのターミナルエミュレーター(Tilix、Terminator、Xfce4-terminal、Guakeなど)でも自動的に動作します。
以下は、標準のエスケープシーケンスとGNOMEターミナル(VTE)の追加を示すリストです。すべての特別なモードを無効にする一般的な\e[m
または\e[0m
ではなく、すべての開始シーケンスに対して、そのプロパティの終了シーケンスのみを表示していることに注意してください。
echo -e '\e[1mbold\e[22m'
echo -e '\e[2mdim\e[22m'
echo -e '\e[3mitalic\e[23m'
echo -e '\e[4munderline\e[24m'
echo -e '\e[4:1mthis is also underline (new in 0.52)\e[4:0m'
echo -e '\e[21mdouble underline (new in 0.52)\e[24m'
echo -e '\e[4:2mthis is also double underline (new in 0.52)\e[4:0m'
echo -e '\e[4:3mcurly underline (new in 0.52)\e[4:0m'
echo -e '\e[5mblink (new in 0.52)\e[25m'
echo -e '\e[7mreverse\e[27m'
echo -e '\e[8minvisible\e[28m <- invisible (but copy-pasteable)'
echo -e '\e[9mstrikethrough\e[29m'
echo -e '\e[53moverline (new in 0.52)\e[55m'
echo -e '\e[31mred\e[39m'
echo -e '\e[91mbright red\e[39m'
echo -e '\e[38:5:42m256-color, de jure standard (ITU-T T.416)\e[39m'
echo -e '\e[38;5;42m256-color, de facto standard (commonly used)\e[39m'
echo -e '\e[38:2::240:143:104mtruecolor, de jure standard (ITU-T T.416) (new in 0.52)\e[39m'
echo -e '\e[38:2:240:143:104mtruecolor, rarely used incorrect format (might be removed at some point)\e[39m'
echo -e '\e[38;2;240;143;104mtruecolor, de facto standard (commonly used)\e[39m'
echo -e '\e[46mcyan background\e[49m'
echo -e '\e[106mbright cyan background\e[49m'
echo -e '\e[48:5:42m256-color background, de jure standard (ITU-T T.416)\e[49m'
echo -e '\e[48;5;42m256-color background, de facto standard (commonly used)\e[49m'
echo -e '\e[48:2::240:143:104mtruecolor background, de jure standard (ITU-T T.416) (new in 0.52)\e[49m'
echo -e '\e[48:2:240:143:104mtruecolor background, rarely used incorrect format (might be removed at some point)\e[49m'
echo -e '\e[48;2;240;143;104mtruecolor background, de facto standard (commonly used)\e[49m'
echo -e '\e[21m\e[58:5:42m256-color underline (new in 0.52)\e[59m\e[24m'
echo -e '\e[21m\e[58;5;42m256-color underline (new in 0.52)\e[59m\e[24m'
echo -e '\e[4:3m\e[58:2::240:143:104mtruecolor underline (new in 0.52) (*)\e[59m\e[4:0m'
echo -e '\e[4:3m\e[58:2:240:143:104mtruecolor underline (new in 0.52) (might be removed at some point) (*)\e[59m\e[4:0m'
echo -e '\e[4:3m\e[58;2;240;143;104mtruecolor underline (new in 0.52) (*)\e[59m\e[4:0m'
(*)下線のトゥルーカラー値はわずかに近似されています。
また、スタイルよりも機能的であるが、おそらくここで言及する価値があるため、この図にはあまり合わない少し奇妙なものは、 hyperlink iTerm2と共同設計されたサポートです。 GNOMEターミナル3.26(VTE 0.50):
echo -e '\e]8;;http://askubuntu.com\e\\hyperlink\e]8;;\e\\'
これらのハードコーディングされたシーケンスを次のように置き換えます
tput smul # set underline
tput rmul # remove underline
tput smso # set bold on
tput rmso # remove bold
tput setaf 1 #red
tput setaf 2 #green
...
tput cup 0 0 # move to pos 0,0
これらのコマンドの詳細な説明については、「man terminfo」および「man tput」を参照してください。
例:
function f_help { c_green=$(tput setaf 2 2>/dev/null) c_reset=$(tput sgr0 2>/dev/null) c_bold=$(tput smso 2>/dev/null) echo "${c_bold}DESCRIPTION${c_reset} : .... ${c_green}My green text${c_reset}My plain text" }