Golfreeze.packetlove.com: Life style of Golfreeze Canon400D Family kammtan.com Jazz Freebsd Unix Linux System Admin guitar Music

All about unix linux freebsd and FAQ for Packetlove.com Web hosting , Mail hosting , VoIP + IP PBX server => command , shell script ,tool , crontab => Topic started by: golfreeze on กันยายน 04, 2022, 06:16:03 PM

Title: grep , egrep , fgrep howto
Post by: golfreeze on กันยายน 04, 2022, 06:16:03 PM
==show line number if found exact word "day" not "today" in file test.txt
grep -n -w "day" test.txt
Title: Re: grep , egrep howto
Post by: golfreeze on กันยายน 04, 2022, 06:17:29 PM
==found word="today" or "future" in file test.txt then show number also
grep -nw -i -e "today" -e "future" test.txt
Title: Re: grep , egrep howto
Post by: golfreeze on กันยายน 04, 2022, 06:21:05 PM
##grep without word "tomorrow" on file test.txt
grep -v "tomorrow" test.txt
Title: Re: grep , egrep , fgrep howto
Post by: golfreeze on กันยายน 04, 2022, 06:59:26 PM
===fgrep = fix grep use with need finding word contain $ {} ? + . | ( )
fgrep "day$" test.txt