Posts
 
Reputation
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
~175 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for pritishs

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

Member Avatar for dave_nithis
0
79
Member Avatar for jack00423

[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]

Member Avatar for pritishs
0
96

The End.