[Solved] Reading Array And Send An Email


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers [Solved] Reading Array And Send An Email
# 8  
Old 07-08-2013
printf and echo are not substitutes for each other, they work very different ways. echo just prints what you give it, printf can format it in various ways.

If you want to print several newlines, printf is a good bet. You don't get echo -e everywhere, but printf works nearly the same way wherever you go.

If you want to print a string without a newline, printf can do that everywhere too. printf "%s" "mystring"

If you want to format numbers, printf can also do that for you.

Code:
printf "%.3f\n" 10
10.000

In fact it can do quite a few things, more than I have time to mention here. See man printf for details.
# 9  
Old 07-08-2013
okay thank you, if it is not too much to ask may i know how to check if array is empty or not. Is the below approach is correct?
Code:
IF [ ${#ARR[*]} -gt 0 ] 
then
  printf "%s" "Array is not empty"
else
  printf "%s" "Array is empty"
FI

# 10  
Old 07-08-2013
That looks correct.
This User Gave Thanks to Corona688 For This Post:
# 11  
Old 07-09-2013
Quote:
Originally Posted by Corona688
printf and echo are not substitutes for each other, they work very different ways. echo just prints what you give it, printf can format it in various ways.

If you want to print several newlines, printf is a good bet. You don't get echo -e everywhere, but printf works nearly the same way wherever you go.

If you want to print a string without a newline, printf can do that everywhere too. printf "%s" "mystring"

If you want to format numbers, printf can also do that for you.

Code:
printf "%.3f\n" 10
10.000

In fact it can do quite a few things, more than I have time to mention here. See man printf for details.
Is there a way where I can combine the floating point number scale along with the string formatting, something like below

Code:
printf "%.3f %s\n" Difference is 10

Difference is 10.000
# 12  
Old 07-11-2013
Quote:
Originally Posted by Ariean
Is there a way where I can combine the floating point number scale along with the string formatting, something like below

Code:
printf "%.3f %s\n" Difference is 10

Difference is 10.000
Yes, the format string uses one 'thing' per item. So:

Code:
printf "%s %.3f\n", "Difference is" "10"

This User Gave Thanks to Corona688 For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help reading the array and sum of the array elements

Hi All, need help with reading the array and sum of the array elements. given an array of integers of size N . You need to print the sum of the elements in the array, keeping in mind that some of those integers may be quite large. Input Format The first line of the input consists of an... (1 Reply)
Discussion started by: nishantrefound
1 Replies

2. SuSE

Send outgoing email to my GroupWise email

Dear users, I have Linux server whose versions are Suse 10 SP 3 and Suse 11. I am trying to send email from these servers to my GroupWise email account. In /etc/postfix/main.cf file, The current value of MYHOSTNAME is LINUX.LOCAL. What should be the right value of MYHOSTNAME? Is... (0 Replies)
Discussion started by: JDBA
0 Replies

3. Shell Programming and Scripting

send email to email id which is having # symbol

Hi, I have one requirement to send email to email id which is having # ( in the begining of the email id). I'm using mailx command to send an email. But not receiving those emails, but email status is showing email sent successful. Code which i'm using is : cat file1.txt | mailx -s... (3 Replies)
Discussion started by: latika
3 Replies

4. UNIX for Dummies Questions & Answers

new to ldap, send email to a ou or group, and see a list from email client

hi, i'm running openldap on ubuntu 10.04, creating new items with apache directory studio (windows version). i use the ldap just as an address book to our small office (email clients are windows live mail 2009, 2011, microsoft outlook 2007 and 2010). a. i cant see a list of the contacts,... (0 Replies)
Discussion started by: V4705
0 Replies

5. Shell Programming and Scripting

Script to send email after comparing the folder permissions to a certain permission & send email

Hello , I am trying to write a unix shell script to compare folder permission to say drwxr-x-wx and then send an email to my id in case the folders don't have the drwxr-x-wx permissions set for them . I have been trying to come up with a script for few days now , pls help me:( (2 Replies)
Discussion started by: nairshar
2 Replies

6. Solaris

Send an email from Solaris using Linux email server

Hello everyone I have a problem and I need your help: I have a Solaris 10 and Solaris 8 UNIX Servers, and Linux Centos4 as email server. I need send an email from Solaris servers preferably using Centos4 email server. I have no mail service configured in my Solaris computers (1 Reply)
Discussion started by: aflores
1 Replies

7. UNIX for Dummies Questions & Answers

Send email where # is in the email address - Using Unix

Hi All, How do I send an email using malix where email address contains a #. I have a email address like this : #test@test.com I want to send email like malix -s "TEST" #test@test.com < SOMEFILE I tried \# but doesn't work. Please let me know how we can achieve this? I am in... (1 Reply)
Discussion started by: jingi1234
1 Replies

8. UNIX for Advanced & Expert Users

Unable to send eMail from a UNIX-Host ( using mailx ) to a Outlook-email-addres(Win)

Hi A) I am able to send eMail using mailx from a UNIX ( solaris 8 ) host to my Outlook-email-ID : FName.Surname@Citigroup.com ( This is NOT my actual -eMail-ID). But in Outlook the "From :" eMail address is displayed as " usr1@unix-host1.unregistered.email.citicorp.com " .i.e the words... (2 Replies)
Discussion started by: Vetrivela
2 Replies
Login or Register to Ask a Question