grep(1) %22User Avi%22 mylog2.log %7C awk %7B%27print %246%27%7D %7C xargs -I user-id grep user-id mylog2.log
print lines matching a pattern
grep searches the named input FILEs (or standard input if no files are named, or if a single hyphen-minus
(-) is given as file name) for lines containing a match to the given PATTERN.  By  default,  grep  prints
the matching lines.
-I     Process  a  binary  file  as  if  it  did  not  contain  matching  data; this is equivalent to the
       --binary-files=without-match option.
source manpages: grep