0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ターミナルでERRORとかに色をつける

Posted at

やりたいこと

ErrorとかWarningとかに色がつけたいよね。

.bashrcに追加

.bashrc
function highlight(){
    grep -i --color=auto -e '$' -e error -e warning -e failure $@
}

使い方

$ echo "This is error test" | highlight

This is error test

$ echo "This is error test" | highlight -e is

This is error test

参考リンク

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?