回答:
これを行う小さなスクリプトを次に示します。これをcolor
のディレクトリに保存します$PATH
(たとえば、にある~/bin
場合$PATH
):
#!/usr/bin/env perl
use strict;
use warnings;
use Term::ANSIColor;
my $color=shift;
while (<>) {
print color("$color").$_.color("reset");
}
次に、テキストをスクリプトに渡し.
て、一致するパターンとして指定し、色を指定します。
サポートされている色は、端末の機能によって異なります。詳細については、パッケージのドキュメントを参照してくださいTerm::ANSIColor
。
rgb001
、rgb123
などのようなものを使用することもできます。詳細については、perldoc.perl.org / Term / ANSIColor.html#Supported-Colorsを参照してください。
あなたはそのために使用tput
します:
tput setaf 1
echo This is red
tput sgr0
echo This is back to normal
これはパイプを構築するために使用できます:
red() { tput setaf 1; cat; tput sgr0; }
echo This is red | red
基本色は、それぞれ黒(0)、赤(1)、緑、黄、青、マゼンタ、シアン、白(7)です。詳細はすべてterminfo(5)
マンページにあります。
でzsh
:
autoload colors; colors
for color (${(k)fg})
eval "$color() {print -n \$fg[$color]; cat; print -n \$reset_color}"
その後:
$ echo "while" | blue
while
(コメントで説明したように、お持ちの場合はtput
代わりに使用してください)
オプションを使用しecho
てANSIエスケープを理解するbourneシェルおよび(組み込み)コマンドを使用\e
し-e
ます。
black() { IFS= ; while read -r line; do echo -e '\e[30m'$line'\e[0m'; done; }
red() { IFS= ; while read -r line; do echo -e '\e[31m'$line'\e[0m'; done; }
green() { IFS= ; while read -r line; do echo -e '\e[32m'$line'\e[0m'; done; }
yellow() { IFS= ; while read -r line; do echo -e '\e[33m'$line'\e[0m'; done; }
blue() { IFS= ; while read -r line; do echo -e '\e[34m'$line'\e[0m'; done; }
purple() { IFS= ; while read -r line; do echo -e '\e[35m'$line'\e[0m'; done; }
cyan() { IFS= ; while read -r line; do echo -e '\e[36m'$line'\e[0m'; done; }
white() { IFS= ; while read -r line; do echo -e '\e[37m'$line'\e[0m'; done; }
echo ' foo\n bar' | red
または、より一般的なシェルスクリプト(たとえば、/usr/local/bin/colorize
):
#!/bin/sh
usage() {
echo 'usage:' >&2
echo ' some-command | colorize {black, red, green, yellow, blue, purple, cyan, white}' >&2
exit 1
}
[ -z "$1" ] && usage
case $1 in
black) color='\e[30m' ;;
red) color='\e[31m' ;;
green) color='\e[32m' ;;
yellow) color='\e[33m' ;;
blue) color='\e[34m' ;;
purple) color='\e[35m' ;;
cyan) color='\e[36m' ;;
white) color='\e[36m' ;;
*) usage ;;
esac
IFS=
while read -r line; do
echo -e $color$line'\e[0m'
done
IFS=
空白のトリミングを防ぐために必要です(詳細についてはPOSIXを参照)。
tput
ます。