Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #55.0K
~175 People Reached
Favorite Forums
Favorite Tags
2 Posted Topics
Here file abc.txt contents name designation salary ----------------------------------- pritish am 15000 animesh pm 20000 asutosh ceo 30000 Write a shell script to find the name whose salary greater or equal t0 20000
[code]cat -n filename|tail +3 |head -8 cat -n filename|head -10|tail -8 cat -n filename|sed '3,10p' cat -n filename|grep -B +7 "10"[/code]
The End.
pritishs