[GLLUG] mail two files

Dpk dpk@egr.msu.edu
Mon, 28 Jan 2002 12:55:52 -0500


On Mon, Jan 28, 2002 at 11:05:20AM -0500, Charles Williams wrote:

   I want to mail two files to myself.
   
   This is how I mail one file:
   
   mail willcha@sme.org < file_one.txt
   
   It seems I should be able to stick another file on there but I can't.
   
   Kinda like
   
   mail willcha@sme.org < file_one.txt < file_two.txt
   
   Any ideas?
   
   
cat file_one.txt file_two.txt | mailx -s "My email subject" willcha@sme.org

Dennis