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
3 Posted Topics
Re: 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] | |
Re: Hi, It works for me. What problem you got?? | |
Re: 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. |
The End.