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
Ranked #55.0K
~2K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for sanju456

Hi, You don't need to write shell script for this one. You can do it in command line itself. echo "This is mail body" | mail -s "This is subject" [email]mail_ID@somedomain.com[/email] Or cat mail_body_file.txt | mail -s "This is subject" [email]mail_ID@somedomain.com[/email]

Member Avatar for sftranna
0
2K
Member Avatar for jure
Member Avatar for jackjill

Hi, Here is you want: $ ls -l `find /tmp -name tt` | awk '$1 = "s" { print $9 " " $3 }' /tmp/Test/Test/tt root You can give the input dirrecotry in find command instead of /tmp.

Member Avatar for Durai
0
128

The End.