I was trying to write a kshell script for displaying the output and searching something in the output and then displaying only that output.
I tried doing the following:
cv = print "blah blah kir kanj"
read CV
print "$cv"
I think this would work. But what if I get output in form of table:
date id name release
123 1 er ererere
12 2 pr irjj
So now If I want to search for name = pr?
how can I do that using same concept?
Tried same concept but it doesn't work