Hello All,
I have script wherein I am sending an email with multiple attachments. If the the file is of .gz then I don't have to anything else I have to do a unix2dos .. How do I do this ..
Here is the script
charset=us-ascii;export charset
for e in *
do
unix2dos $e $e
uuencode $e $e
done|...
Hello,
How do I check the value of argument? If it is not null only then I need to pass this into my script ..
In a ftp script I have to put the datafile into a specific directory. If the directory is not given then it should put it in the common directory .. how do I this ..
{
id=$5
un=$6...
Hello,
I need to send as many files as attchments in a single email. I have used
(uuencode file1.txt file2.doc; uuencode file2.txt file2.doc) | mailx -s 'Test' name@email.com
Here I am passing the entire uuencode(whatever is in the bracket) as one string from a pl/sql program .. how do I do...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.