DataStage tips is now active on datastagetipsntricks.blogspot.com
grep- Unix command used to search specified text.cat Employee | grep Bhuvnesh.In the File 'Employee'. THe outut of the above command will show all the lines which contains Bhuvnesh. It is case sensitive. grep -i Bhuvnesh > For case insensitive.
grep- Unix command used to search specified text.
ReplyDeletecat Employee | grep Bhuvnesh.
In the File 'Employee'. THe outut of the above command will show all the lines which contains Bhuvnesh. It is case sensitive. grep -i Bhuvnesh > For case insensitive.