Dosyam aşağıdaki metni içeriyor
xyz.com 123 321
xyz.com.br 123 123
abcd.xyz.com 123 321
Sadece xyz.com içeren satırı grep etmek istiyorum. yani, çıktı ilk satır olmalıdır.
xyz.com 123 321
Aşağıdaki denedim ama boşuna.
grep "^xyz.com$" file.txt
grep '^xyz.com$' file.txt
grep -w xyz.com file.txt
grep '^xyz.com$' file.txt
grep '^xyz\.com$' file.txt
grep -Fx xyz.com file.txt
grep -w 'xyz.com' file.txt
grep -w 'xyz\.com' file.txt
grep '\sxyz.com\s' file.txt
grep '\bxyz.com\b' file.txt
grep "\bxyz.com\b" file.txt
grep "\<xyz.com\>" file.txt
grep '\<xyz.com\>' file.txt
grep -w -l "xyz\.com" file.txt
grep -w "xyz\.com" file.txt
grep -wF "xyz\.com" file.txt
grep -w "xyz\.com$" file.txt
grep -w "xyz\.com\$" file.txt
Shell bash. Teşekkürler.