I have one piece of code which is mentioned below where it's sending two files as attachment.
mailx -s "$ms - $cdate $ctime" $ReportGroup < ${mailmsg} >/dev/null 2>&1
Here mailmsg contents some files. Now i am trying to send one more file xyz.csv
in the above command.
how can i do the same?
Thanks in advance.