Search Results

Search: Posts Made By: msvinaykumar
2,100
Posted By msvinaykumar
some code snips
I ll give some code snips
it may help u


#!/bin/sh
var=`tail -2 file`
for i in $var; do
echo $i | cut -d "|" -f7|mailx -s "subject" abc.com
done

Or after CUT command u need to...
6,503
Posted By msvinaykumar
Excel to Html
Hi,
How to convert excel to html in shell prompt
Is there any unix command to do this ?
Vinay
1,674
Posted By msvinaykumar
Sendmail
Use perl programe

my $sendmail = "/usr/sbin/sendmail -t";

open(MAIL,"|$sendmail");

print MAIL "To: ".$to."\n";

print MAIL "From:...
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 06:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy