Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

grep returns

Binary file test.log matches

For example

echo    "line1 re x00
line2
line3 re
" > test.log  # in zsh
echo -e "line1 re x00
line2
line3 re
" > test.log  # in bash
grep re test.log

I wish the result will show line1 and line3 (total two lines).

Is it possible to use tr convert the unprintable data into readable data, to let grep work again?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
810 views
Welcome To Ask or Share your Answers For Others

1 Answer

grep -a

It can't get simpler than that.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...